Responsiveness adjustements, source link

This commit is contained in:
2026-05-09 11:45:13 -03:00
parent 6cf711ad97
commit 321d3ccf62
4 changed files with 111 additions and 19 deletions
+77 -2
View File
@@ -399,10 +399,44 @@ a {
opacity: 1;
}
.repo-footer {
display: flex;
justify-content: center;
margin-top: -8px;
padding-bottom: 8px;
}
.repo-footer a {
display: inline-flex;
align-items: center;
gap: 6px;
color: var(--outline);
font-size: 9px;
font-weight: 600;
letter-spacing: 0.12em;
opacity: 0.45;
text-decoration: none;
text-transform: uppercase;
transition: color 120ms ease, opacity 120ms ease;
}
.repo-footer a:hover,
.repo-footer a:focus-visible {
color: var(--primary-dim);
opacity: 0.85;
}
.repo-footer img {
width: auto;
height: 20px;
object-fit: contain;
opacity: 0.8;
}
.side-terminal {
position: fixed;
left: 16px;
top: 50%;
top: calc(64px + (100vh - 64px) / 2);
transform: translateY(-50%);
width: 192px;
padding-left: 8px;
@@ -419,10 +453,31 @@ a {
text-decoration: underline;
}
.terminal-strip {
display: none;
margin-top: 0;
padding: 10px 0;
color: var(--outline);
font-size: 10px;
font-weight: 600;
letter-spacing: 0.1em;
text-transform: uppercase;
}
.terminal-strip strong {
color: var(--muted);
font-weight: 600;
}
.terminal-strip .active {
color: var(--primary-dim);
text-decoration: underline;
}
.scroll-indicator {
position: fixed;
right: 16px;
top: 50%;
top: calc(64px + (100vh - 64px) / 2);
display: flex;
flex-direction: column;
gap: 8px;
@@ -635,6 +690,25 @@ dialog::backdrop {
}
}
@media (max-width: 1759px) and (min-width: 901px) {
.side-terminal {
display: none;
}
.terminal-strip {
display: flex;
flex-wrap: wrap;
gap: 8px 20px;
align-items: center;
}
}
@media (min-width: 1760px) {
.terminal-strip {
display: none;
}
}
@media (max-width: 900px) {
.topbar,
.shell {
@@ -647,6 +721,7 @@ dialog::backdrop {
}
.side-terminal,
.terminal-strip,
.scroll-indicator {
display: none;
}