Skip to content

Commit e81a56e

Browse files
committed
(demo) remove padding on mobile
1 parent 8360495 commit e81a56e

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

demo/src/App.vue

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@
2323
v-if="showChat"
2424
/>
2525

26-
<div class="version-container">
26+
<!-- <div class="version-container">
2727
v1.0.0
28-
</div>
28+
</div> -->
2929
</div>
3030
</div>
3131
</template>
@@ -127,9 +127,9 @@ body {
127127
line-height: 1.5;
128128
padding: 10px 20px 20px;
129129
130-
// * {
131-
// font-weight: 300;
132-
// }
130+
@media only screen and (max-width: 768px) {
131+
padding: 0;
132+
}
133133
}
134134
135135
select {
@@ -177,6 +177,11 @@ select {
177177
&:active {
178178
opacity: 0.6;
179179
}
180+
181+
@media only screen and (max-width: 768px) {
182+
padding: 3px 6px;
183+
font-size: 13px;
184+
}
180185
}
181186
}
182187

0 commit comments

Comments
 (0)