add: user settings
fix: actually use cached stuff in auto_method macro add: profile ui base
This commit is contained in:
parent
8580e34be2
commit
7d96a3d20f
16 changed files with 222 additions and 8 deletions
|
@ -88,6 +88,10 @@ footer {
|
|||
padding: 0.75rem 1rem;
|
||||
}
|
||||
|
||||
article {
|
||||
margin-top: 1rem;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 900px) {
|
||||
main,
|
||||
article,
|
||||
|
@ -96,6 +100,10 @@ footer {
|
|||
footer {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
article {
|
||||
margin-top: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.content_container {
|
||||
|
@ -135,6 +143,8 @@ footer {
|
|||
svg.icon {
|
||||
stroke: currentColor;
|
||||
width: 18px;
|
||||
width: 1em;
|
||||
height: 1em;
|
||||
}
|
||||
|
||||
svg.icon.filled {
|
||||
|
@ -360,6 +370,14 @@ button,
|
|||
font-weight: 600;
|
||||
}
|
||||
|
||||
button.small,
|
||||
.button.small {
|
||||
min-height: max-content;
|
||||
padding: 0.25rem;
|
||||
height: 24px;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
button:hover,
|
||||
.button:hover {
|
||||
background: var(--color-primary-lowered);
|
||||
|
@ -490,6 +508,15 @@ select:focus {
|
|||
padding: 0;
|
||||
}
|
||||
|
||||
/* chip */
|
||||
.chip {
|
||||
background: var(--color-primary);
|
||||
color: var(--color-text-primary);
|
||||
font-weight: 600;
|
||||
border-radius: var(--circle);
|
||||
padding: 0.05rem 0.75rem;
|
||||
}
|
||||
|
||||
/* nav */
|
||||
nav {
|
||||
background: var(--color-primary);
|
||||
|
@ -1041,6 +1068,7 @@ details.accordion .inner {
|
|||
|
||||
.sm\:w-full {
|
||||
width: 100% !important;
|
||||
min-width: 100% !important;
|
||||
}
|
||||
|
||||
.sm\:mt-2 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue