Merge pull request #107 from samuelthomas2774/linux-fixes
Fix position of the settings menu button on Linux
This commit is contained in:
commit
224b51f1c3
|
@ -13,6 +13,10 @@
|
|||
top: 27px;
|
||||
}
|
||||
|
||||
.platform-linux & {
|
||||
top: 0;
|
||||
}
|
||||
|
||||
.bd-settings-button-btn {
|
||||
background-image: $logoSmallBw;
|
||||
background-size: 50% 50%;
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<template>
|
||||
<div class="bd-settings-wrapper" :class="[{active: active}, 'platform-' + this.platform]">
|
||||
<div class="bd-settings-button" :class="{'bd-hide': active}" @click="showSettings">
|
||||
<div class="bd-settings-button" @click="showSettings">
|
||||
<div class="bd-settings-button-btn" :class="[{'bd-loading': !loaded}]"></div>
|
||||
</div>
|
||||
<BdSettings :active="active" :close="hideSettings" />
|
||||
|
|
Loading…
Reference in New Issue