Skip to content

Commit

Permalink
wip: KPage padding does not take into account Quasar responsive padding
Browse files Browse the repository at this point in the history
  • Loading branch information
cnouguier committed Aug 13, 2024
1 parent 182180d commit 9942317
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/client/components/layout/KPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ const layoutOffset = ref(0)
// Computed
const contentStyleFunction = computed(() => {
const layoutPadding = $q.screen.xs ? 16 : $q.screen.lt.xl ? 32 : 48
const layoutPadding = $q.screen.xs ? 16 : $q.screen.lt.lg ? 32 : 48
const widthOffset = layoutPadding
const heightOffset = layoutOffset.value + layoutPadding
return {
Expand Down

0 comments on commit 9942317

Please sign in to comment.