Improved user page stash display on narrow pages.

This commit is contained in:
DebaucheryLibrarian
2021-03-20 16:47:01 +01:00
parent a7cf3f689e
commit bb949e0a3b
2 changed files with 16 additions and 7 deletions

View File

@@ -17,6 +17,7 @@
<li
v-for="stash in user.stashes"
:key="stash.id"
class="stashes-stash"
>
<Stash
:stash="stash"
@@ -27,7 +28,7 @@
<li
v-if="isMe"
class="stashes-add"
class="stashes-stash stashes-add"
@click="showAddStash = true"
>
<Icon icon="plus2" />
@@ -118,6 +119,10 @@ export default {
color: var(--primary);
}
.stashes-stash {
min-width: 0;
}
.stashes-add {
height: 100%;
display: flex;