mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-09 11:41:30 -07:00
try to move button down
This commit is contained in:
parent
979aba7eb1
commit
6068391e1d
1 changed files with 18 additions and 2 deletions
|
@ -91,7 +91,6 @@
|
|||
<i class="ph-stack ph-bold ph-lg"></i>
|
||||
</div>
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<button
|
||||
v-if="isMobile && mainRouter.currentRoute.value.name === 'index'"
|
||||
|
@ -113,6 +112,7 @@
|
|||
>
|
||||
<i class="ph-user-plus ph-bold ph-lg"></i>
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<transition :name="$store.state.animation ? 'menuDrawer-back' : ''">
|
||||
<div
|
||||
|
@ -510,6 +510,22 @@ console.log(mainRouter.currentRoute.value.name);
|
|||
background: var(--bg);
|
||||
}
|
||||
|
||||
.postButton {
|
||||
composes: navButton;
|
||||
background: linear-gradient(90deg, var(--buttonGradateA), var(--buttonGradateB));
|
||||
color: var(--fgOnAccent);
|
||||
|
||||
&:hover {
|
||||
background: linear-gradient(90deg, var(--X8), var(--X8));
|
||||
color: var(--fgOnAccent);
|
||||
}
|
||||
|
||||
&:active {
|
||||
background: linear-gradient(90deg, var(--X8), var(--X8));
|
||||
color: var(--fgOnAccent);
|
||||
}
|
||||
}
|
||||
/*
|
||||
> .postButton,
|
||||
.widgetButton {
|
||||
bottom: var(--stickyBottom);
|
||||
|
@ -544,7 +560,7 @@ console.log(mainRouter.currentRoute.value.name);
|
|||
background-size: 100%;
|
||||
transition: background 0.1s;
|
||||
}
|
||||
}
|
||||
}*/
|
||||
|
||||
> .buttons {
|
||||
position: fixed;
|
||||
|
|
Loading…
Reference in a new issue