more simpler + torty sectino

This commit is contained in:
bronkuu 2026-06-15 20:30:15 +02:00
parent a74c276cd3
commit 3b184c7c6f
10 changed files with 375 additions and 152 deletions

View file

@ -749,3 +749,53 @@ textarea + label {
.hide {
display: none;
}
.link-btn {
background: none;
border: none;
color: var(--primary);
font-weight: 600;
font-size: inherit;
cursor: pointer;
padding: 0;
text-align: left;
}
.link-btn:hover {
text-decoration: underline;
}
.overlay-panel--view {
width: 24rem;
}
.view-field {
display: flex;
flex-direction: column;
gap: 0.125rem;
padding: var(--space-sm) 0;
border-bottom: 1px solid var(--outline-dim);
}
.view-field:last-child {
border-bottom: none;
}
.view-field > label {
font-size: 0.75rem;
font-weight: 600;
color: var(--on-surface-dim);
letter-spacing: 0.02em;
}
.view-field > span,
.view-field > div {
font-size: 0.875rem;
color: var(--on-surface);
}
#sc-view-tags {
display: flex;
flex-wrap: wrap;
gap: var(--space-xs);
}