Small changes

This commit is contained in:
hfcRed 2026-03-17 23:56:59 +01:00
parent 35f48272af
commit 858fcf750d
5 changed files with 17 additions and 5 deletions

View File

@ -320,9 +320,10 @@
font-size: var(--font-2xs);
color: var(--color-text-high);
text-decoration: none;
padding: var(--s-1) var(--s-3);
height: var(--selector-size);
padding: 0 var(--s-3);
background-color: var(--color-bg-high);
border-radius: var(--radius-field);
border-radius: var(--radius-selector);
& svg {
stroke-width: 3;

View File

@ -165,7 +165,8 @@
display: flex;
align-items: center;
gap: var(--s-1);
padding: var(--s-1) var(--s-2);
padding: 0 var(--s-2);
height: var(--field-size-sm);
border-radius: var(--radius-field);
font-size: var(--font-xs);
cursor: pointer;
@ -246,8 +247,8 @@
display: flex;
align-items: center;
justify-content: center;
width: 28px;
height: 28px;
height: var(--field-size-sm);
aspect-ratio: 1 / 1;
border: 1px solid var(--color-border);
border-radius: var(--radius-field);
background-color: var(--color-bg);

View File

@ -19,4 +19,5 @@
justify-content: space-between;
flex-wrap: wrap;
gap: var(--s-2);
margin-block-end: var(--s-2);
}

View File

@ -116,10 +116,17 @@
.logoContainer {
display: flex;
flex-direction: column;
align-items: center;
gap: var(--s-4);
}
@container (width >= 480px) {
.logoContainer {
flex-direction: row;
}
}
.logo {
border-radius: var(--radius-avatar);
min-width: 124px;

View File

@ -332,6 +332,8 @@
margin: 0.5rem;
translate: -0.5rem;
max-height: 50dvh;
scrollbar-width: thin;
scrollbar-color: var(--color-bg-higher) transparent;
}
/* biome-ignore lint: experimental CSS feature */