ปรับขนาดตัวหนังสือ
This commit is contained in:
parent
9ae325014b
commit
96c0567b30
1 changed files with 30 additions and 1 deletions
|
|
@ -81,7 +81,7 @@ onMounted(() => {
|
|||
class="bg-white rounded-borders q-pa-sm"
|
||||
style="border: 1px solid #ededed"
|
||||
>
|
||||
<div class="row items-center no-wrap">
|
||||
<div class="row items-center no-wrap text-size">
|
||||
{{ i.label }}
|
||||
<q-space />
|
||||
<q-badge :color="i.color" text-color="white" :label="i.total" />
|
||||
|
|
@ -91,3 +91,32 @@ onMounted(() => {
|
|||
</div>
|
||||
</q-card>
|
||||
</template>
|
||||
<style scoped>
|
||||
.text-size {
|
||||
font-size: 14px;
|
||||
}
|
||||
@media (min-width: 1400px) {
|
||||
.text-size {
|
||||
font-size: 14px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 1350px) and (max-width: 1399px) {
|
||||
.text-size {
|
||||
font-size: 13px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 1050px) and (max-width: 1349px) {
|
||||
.text-size {
|
||||
font-size: 12px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1024px) and (max-width: 1049px) {
|
||||
.text-size {
|
||||
font-size: 12px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
</style>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue