Skip to content

Commit aa47289

Browse files
committed
polish
1 parent 93fc6b1 commit aa47289

File tree

1 file changed

+16
-3
lines changed

1 file changed

+16
-3
lines changed

src/views/LoginView.vue

+16-3
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,21 @@ const login = () => {
6666
</template>
6767

6868
<style lang="scss" scoped>
69-
.q-card {
70-
width: 50vw;
71-
height: auto;
69+
@media (min-width:800px) {
70+
71+
// 800px or more
72+
.q-card {
73+
width: 50vw;
74+
height: auto;
75+
}
76+
}
77+
78+
@media (max-width: 799px) {
79+
80+
// 799px or less
81+
.q-card {
82+
width: 90vw;
83+
height: auto;
84+
}
7285
}
7386
</style>

0 commit comments

Comments
 (0)