Added stash creation. Added dialog framework.

This commit is contained in:
2024-03-26 04:14:42 +01:00
parent 9de289a0fb
commit 68b9658ba6
9 changed files with 377 additions and 82 deletions

View File

@@ -23,17 +23,22 @@
.button {
display: inline-flex;
align-items: center;
flex-shrink: 0;
align-items: stretch;
box-sizing: border-box;
padding: .5rem 1rem;
padding: .5rem 0 .5rem .5rem;
border: none;
border-radius: .25rem;
background: var(--grey-light-30);
font-size: 1rem;
background: var(--background);
box-shadow: 0 0 3px var(--shadow-weak-30);
color: var(--shadow-strong-30);
font-size: .9rem;
font-weight: bold;
.icon {
padding: .5rem;
height: auto;
padding: 0 .75rem 0 .25rem;
fill: var(--shadow-strong-20);
}
&:hover {
@@ -51,9 +56,13 @@
}
}
.button-label {
margin-right: .75rem;
}
.button-submit {
background: var(--primary-light-10);
color: var(--text-light);
color: var(--primary);
justify-content: center;
&:hover:not(:disabled) {
background: var(--primary);