Skip to content

Commit

Permalink
refactor(header.vue): remove unused button and add css class to toggl…
Browse files Browse the repository at this point in the history
…e btn
  • Loading branch information
amoncaldas committed Nov 5, 2021
1 parent 872f1ce commit 6900e61
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/fragments/header/Header.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@
<div>
<v-toolbar v-if="showToolbar" :class="{'hidden': !$store.getters.topBarOpen}" class="ors-toolbar app-toolbar" height="93" app
:clipped-left="clipped" v-click-outside="hideTopBar">
<v-btn slot="defaukt" icon @click.stop="toggleSidebar" class="hidden-md-and-up">
<v-icon>menu</v-icon>
</v-btn>
<a :href="homeUrl">
<img height="52.5" :src="getConfigVal('logoImgSrc')" :alt="getConfigVal('appName')" class="ml-3">
</a>
Expand All @@ -16,7 +13,7 @@
</v-toolbar-items>
<v-spacer></v-spacer>
</v-toolbar>
<v-btn fab small v-if="!$store.getters.embed && $highResolution"
<v-btn fab small class="toggle-header" v-if="!$store.getters.embed && $highResolution"
:title="$store.getters.topBarOpen? $t('header.hideMenuBar'): $t('header.showMenuBar')"
style="width: 38px; height: 38px; position:absolute; right:170px; z-index:4; transition:all 1s ease; border-radius: 5px; border: 2px solid rgba(0,0,0,.2);
background-clip: padding-box; box-shadow: none"
Expand Down

0 comments on commit 6900e61

Please sign in to comment.