profilecard on profilepages, settings page init & more

This commit is contained in:
2022-12-30 18:08:03 +01:00
parent def79c162c
commit b3908b6ace
8 changed files with 249 additions and 138 deletions

View File

@@ -62,6 +62,17 @@ button {
// color: black;
}
}
input {
display: inline-block;
font-size: 1rem;
padding: 4px;
border-radius: 3px;
background: rgba(white, 0.1);
border: 0;
color: white;
outline: none;
font-family: var(--fonts-norm);
}
.chips {
display: flex;

View File

@@ -0,0 +1,10 @@
.inputSectionParent {
display: flex;
flex-direction: column;
}
.inputSection {
display: flex;
flex-direction: row;
gap: 1rem;
align-items: baseline;
}