Skip to content

Commit

Permalink
Fix backlight on gear & page/event setting buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
kc0bfv committed Apr 28, 2024
1 parent 1aca365 commit 0341ca4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions application/src/frontend/src/views/stats/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ watch(() => route.path, async () => {

<div class="setting-area" style="flex: 0 0; display: flex; flex-flow: row nowrap;">
<el-tooltip content="Content" style="flex: 0 0;">
<el-button class="menu-button hidden-sm-and-up" text round plan @click="showContent = !showContent" style="padding-left: 0px;">
<el-button class="menu-button hidden-sm-and-up" text round plan @click="showContent = !showContent" style="margin-right: 8px; margin-left: -10px;">
<mdi-menu class="menu-button__icon"></mdi-menu>
</el-button>
</el-tooltip>
Expand All @@ -232,7 +232,7 @@ watch(() => route.path, async () => {
<el-divider direction="vertical" style="height: 1.5em; top: .2em;"></el-divider>

<el-tooltip content="Settings">
<el-button class="menu-button" text round plain @click="showSettings = !showSettings" style="padding-right: 0px;">
<el-button class="menu-button" text round plain @click="showSettings = !showSettings" style="margin-right: -10px;">
<mdi-cog class="menu-button__icon"></mdi-cog>
</el-button>
</el-tooltip>
Expand Down

0 comments on commit 0341ca4

Please sign in to comment.