diff options
| author | Danilo M. <danix@danix.xyz> | 2026-04-28 13:48:59 +0200 |
|---|---|---|
| committer | Danilo M. <danix@danix.xyz> | 2026-04-28 13:48:59 +0200 |
| commit | 6735528b9e3e9cffcbeef37bddba0e225dba9c9e (patch) | |
| tree | 50ac4c1f7d963cbe67a8ac7f89388ab26f711496 | |
| parent | 708682f017fb0f6a1293bc0a422872c95025aa6d (diff) | |
| download | danixxyz-theme-6735528b9e3e9cffcbeef37bddba0e225dba9c9e.tar.gz danixxyz-theme-6735528b9e3e9cffcbeef37bddba0e225dba9c9e.zip | |
build: recompile CSS with auto-fill fix
| -rw-r--r-- | assets/css/main.min.css | 29 |
1 files changed, 15 insertions, 14 deletions
diff --git a/assets/css/main.min.css b/assets/css/main.min.css index 9fbcaa0..3ff63eb 100644 --- a/assets/css/main.min.css +++ b/assets/css/main.min.css @@ -1652,6 +1652,21 @@ article.border.border-border\/30.rounded-lg.card.group.bg-bg { } /* ===================== + Repository Grid + ===================== */ + +.repo-grid { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); + gap: 1.5rem; +} + +.repo-card:only-child { + max-width: 50%; + margin-inline: auto; +} + +/* ===================== Timeline Layout ===================== */ @@ -2586,10 +2601,6 @@ article.border.border-border\/30.rounded-lg.timeline-thumb.group.bg-bg { gap: 1rem; } -.gap-6 { - gap: 1.5rem; -} - .gap-8 { gap: 2rem; } @@ -4449,10 +4460,6 @@ article.toast.border-border\/30.rounded-lg.overflow-hidden.group.bg-bg { max-width: 45%; } - .md\:grid-cols-2 { - grid-template-columns: repeat(2, minmax(0, 1fr)); - } - .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } @@ -4482,12 +4489,6 @@ article.toast.border-border\/30.rounded-lg.overflow-hidden.group.bg-bg { } } -@media (min-width: 1060px) { - .lg\:grid-cols-3 { - grid-template-columns: repeat(3, minmax(0, 1fr)); - } -} - @media (prefers-color-scheme: dark) { .dark\:hover\:text-text:hover { color: var(--text); |
