Click here to Skip to main content
15,884,388 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I use Quasar framework and Vue js to make a login ui. So there problem is when switch to mobile, the Ui did not resize to fit. And I still new to quasar and javascript.

What I have tried:

<template>
  <div class="q-pa-md" style="width: 400px">
    <q-img src="./../assets/logo.png" width="100%">
      <div class="row justify-center bg-transparent" style="width: 100%">
        <div class="column justify-center items-center q-pa-md bg-banner">
          <q-img src="./../assets/logo.png" width="100px" />
            <div class="text-black text-subtitle1">My Project</div>
        </div>
      </div>
    </q-img>
    <q-form class="q-mt-md">
      <q-input filled label="Your email *" lazy-rules />

      <q-input filled label="Password *"> </q-input>

      <div style="margin-top: 40px" class="q-gutter-x-sm">
        <q-btn label="Login" color="primary" />
        <q-btn flat label="Sign Up" />
        <q-btn flat label="Forgot Password?" />
      </div>
    </q-form>
  </div>
</template>

<script>
</script>
<style scoped>
.bg-banner {
  background-color: white;
  opacity: 0.85;
  border-radius: 3px;
}
</style>
Posted
Updated 13-Apr-21 23:00pm

1 solution

You've set the width of your containing <div> to 400px. That will not change, regardless of the screen size.

Responsive Web Design Introduction[^]
 
Share this answer
 
Comments
Mugiwara Luffy 14-Apr-21 12:56pm    
where do i should add & change the code. Can you add for me? Im still new to this css javascript
Richard Deeming 15-Apr-21 4:43am    
On the line where you have style="width:400px", change that to a percentage. Or use media queries in your stylesheet to adjust the width based on the screen width.

We can't do it for you; we have no idea how you want the layout to change for smaller screens.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900