Skip to content

Commit

Permalink
refactor: updated padding management
Browse files Browse the repository at this point in the history
  • Loading branch information
cnouguier committed Dec 30, 2024
1 parent fc2dc5d commit eb00c27
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions config/default.js
Original file line number Diff line number Diff line change
Expand Up @@ -527,6 +527,7 @@ module.exports = {
},
mapActivity: {
additionalMixins: [],
padding: false,
topPane: {
content: {
default: [
Expand Down Expand Up @@ -623,6 +624,7 @@ module.exports = {
},
globeActivity: {
additionalMixins: [],
padding: false,
topPane: {
content: {
default: [
Expand Down
2 changes: 1 addition & 1 deletion src/components/GlobeActivity.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div id="globe-credit"/>
<KPage :padding="false">
<KPage>
<!-- Globe -->
<div id="globe" :ref="configureGlobe" :style="viewStyle">
<q-resize-observer @resize="onGlobeResized" />
Expand Down
2 changes: 1 addition & 1 deletion src/components/MapActivity.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<KPage :padding="false">
<KPage>
<!-- Map -->
<div id="map" :ref="configureMap" :style="viewStyle">
<q-resize-observer @resize="onMapResized" />
Expand Down

0 comments on commit eb00c27

Please sign in to comment.