Skip to content

Commit

Permalink
Added: padding bottom only when having screen size greater than 991px(#…
Browse files Browse the repository at this point in the history
  • Loading branch information
ymaheshwari1 committed Aug 21, 2024
1 parent 2eb1307 commit 3b1bb16
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
10 changes: 6 additions & 4 deletions src/views/FindFacilities.vue
Original file line number Diff line number Diff line change
Expand Up @@ -406,12 +406,14 @@ export default defineComponent({
--columns-desktop: 4;
}
ion-content {
--padding-bottom: 80px;
}
config-note {
display: block;
text-align: center;
}
@media screen and (min-width: 991px) {
ion-content {
--padding-bottom: 80px;
}
}
</style>
6 changes: 4 additions & 2 deletions src/views/Parking.vue
Original file line number Diff line number Diff line change
Expand Up @@ -234,8 +234,10 @@ main {
margin: auto;
}
ion-content {
--padding-bottom: 80px;
@media screen and (min-width: 991px) {
ion-content {
--padding-bottom: 80px;
}
}
</style>

0 comments on commit 3b1bb16

Please sign in to comment.