Skip to content

Commit

Permalink
fix: flip button positions
Browse files Browse the repository at this point in the history
  • Loading branch information
dessant committed Dec 19, 2019
1 parent 4562e99 commit 95b62ab
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/action/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@
</div>
<div class="header-buttons">
<v-icon-button
class="contribute-button"
src="/src/contribute/assets/heart.svg"
@click="showContribute"
class="settings-button"
src="/src/icons/misc/time.svg"
@click="showActionSettings = !showActionSettings"
>
</v-icon-button>

<v-icon-button
class="settings-button"
src="/src/icons/misc/time.svg"
@click="showActionSettings = !showActionSettings"
class="contribute-button"
src="/src/contribute/assets/heart.svg"
@click="showContribute"
>
</v-icon-button>

Expand Down Expand Up @@ -298,7 +298,7 @@ body {
white-space: nowrap;
padding-top: 16px;
padding-left: 16px;
padding-right: 8px;
padding-right: 4px;
}
.title {
Expand Down Expand Up @@ -332,11 +332,11 @@ body {
}
.contribute-button {
margin-right: 8px;
margin-right: 4px;
}
.settings-button {
margin-right: 4px;
margin-right: 12px;
}
.action-menu {
Expand Down

0 comments on commit 95b62ab

Please sign in to comment.