Skip to content

Commit

Permalink
fix reponsiveness for building label filters
Browse files Browse the repository at this point in the history
  • Loading branch information
solderq35 committed Sep 8, 2023
1 parent 1e40a51 commit 00874c0
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions src/components/building_list/building_list.vue
Original file line number Diff line number Diff line change
Expand Up @@ -207,14 +207,20 @@ export default {
width: 100%;
}
/*--- Tabs ---*/
tab_label {
font-size: 14px;
.tab_label {
font-size: 16px;
}
/*-- for reducing el-tabs padding: https://www.jianshu.com/p/9db8679de026 --*/
::v-deep .el-tabs__item {
padding: 0 10px;
@media only screen and (max-width: 600px) {
.tab_label {
font-size: 14px;
}
/*-- for reducing el-tabs padding: https://www.jianshu.com/p/9db8679de026 --*/
::v-deep .el-tabs__item {
padding: 0 10px;
}
}
/*--- Flex Box ---*/
.card_flex {
flex-wrap: wrap !important;
Expand Down

0 comments on commit 00874c0

Please sign in to comment.