Added delete stash icons and dialog.

This commit is contained in:
DebaucheryLibrarian
2021-03-20 23:03:13 +01:00
parent 07643870cd
commit eee47111a6
14 changed files with 204 additions and 33 deletions

View File

@@ -23,6 +23,7 @@
:stash="stash"
:is-me="isMe"
@publish="() => fetchUser()"
@remove="() => fetchUser()"
/>
</li>
@@ -131,20 +132,20 @@ export default {
display: flex;
align-items: center;
justify-content: center;
background: var(--shadow-hint);
background: var(--shadow-touch);
.icon {
width: 1.5rem;
height: 1.5rem;
fill: var(--shadow-weak);
fill: var(--shadow-hint);
}
&:hover {
background: var(--shadow-weak);
background: var(--shadow-hint);
cursor: pointer;
.icon {
fill: var(--shadow);
fill: var(--shadow-weak);
}
}
}