22 lines
297 B
CSS
22 lines
297 B
CSS
.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;
|
|
}
|
|
}
|