Move the footer into a common area for reuse

This commit is contained in:
Oliver 2026-01-18 00:32:44 -07:00
parent 47e693f5b8
commit ed60f9d689
5 changed files with 24 additions and 22 deletions

22
styles/apps/common.css Normal file
View file

@ -0,0 +1,22 @@
.token-browser {
> .window-content {
display: flex;
flex-direction: column;
gap: 0.5rem;
color: var(--color-form-label);
}
label, .label {
font-weight: bold;
}
footer {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 0.5rem;
}
.large {
font-size: 1rem;
}
}