Added alert transfer tools. Removed stash and alert add-tiles in favor of more prominent heading buttons.

This commit is contained in:
DebaucheryLibrarian
2023-06-08 02:36:47 +02:00
parent e7b72f5e99
commit 3dbb74a1dc
4 changed files with 36 additions and 17 deletions

View File

@@ -26,6 +26,8 @@
}
.button {
display: inline-flex;
align-items: center;
border: none;
background: none;
padding: .5rem;
@@ -49,6 +51,11 @@
background: var(--shadow-weak);
cursor: default;
}
.icon {
fill: var(--text-light);
margin-right: .5rem;
}
}
.button-secondary {
@@ -57,12 +64,21 @@
&:hover:not(:disabled) {
color: var(--text-light);
background: var(--primary);
.icon {
fill: var(--text-light);
}
}
&:disabled {
color: var(--shadow-strong);
cursor: default;
}
.icon {
fill: var(--primary);
margin-right: .5rem;
}
}
.album-toggle {