spb/spbgit Public MIT
SPB Git — the platform hosting itself
JavaScript 73.9%
CSS 11.7%
Nunjucks 11.6%
Shell 2.7%
1/**2 * ─────────────────────────────────────────────3 * SPB Git — Personal Git Platform4 * ─────────────────────────────────────────────5 * Author : Simon-Pierre Boucher6 * Contact : contact@spboucher.ai7 * File : src/web/assets/css/app.css8 * Purpose : Application styles — layout, nav, cards, tables, diffs9 * License : MIT © Simon-Pierre Boucher10 * ─────────────────────────────────────────────11 */1213*, *::before, *::after { box-sizing: border-box; }1415html { -webkit-text-size-adjust: 100%; }1617body {18 margin: 0;19 background: var(--bg);20 color: var(--text);21 font-family: var(--font-ui);22 font-size: 15px;23 line-height: 1.55;24 min-height: 100vh;25 display: flex;26 flex-direction: column;27}2829a { color: var(--accent); text-decoration: none; }30a:hover { text-decoration: underline; }31code, pre, kbd { font-family: var(--font-mono); }32button { font-family: inherit; }3334.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; width: 100%; }35main.container { flex: 1; padding-top: 24px; padding-bottom: 48px; }3637.sr-only, .skip-link {38 position: absolute; width: 1px; height: 1px; overflow: hidden;39 clip: rect(0 0 0 0); white-space: nowrap;40}41.skip-link:focus {42 position: fixed; top: 8px; left: 8px; width: auto; height: auto; clip: auto;43 background: var(--surface); border: 1px solid var(--accent); padding: 8px 12px;44 border-radius: var(--radius); z-index: 100;45}46.muted { color: var(--muted); }4748/* ── Top nav ─────────────────────────────── */49.topnav {50 position: sticky; top: 0; z-index: 50;51 background: color-mix(in srgb, var(--bg) 88%, transparent);52 backdrop-filter: blur(10px);53 border-bottom: 1px solid var(--border);54}55.topnav-inner { display: flex; align-items: center; gap: 16px; height: 56px; }56.brand { display: flex; align-items: center; gap: 9px; color: var(--text); font-weight: 700; }57.brand:hover { text-decoration: none; }58.brand-mark { flex: none; }59.global-search { flex: 1; max-width: 420px; }60.global-search input, .repo-filters input, .search-page-form input {61 width: 100%; background: var(--surface); color: var(--text);62 border: 1px solid var(--border); border-radius: var(--radius);63 padding: 7px 12px; font-size: 14px; outline: none;64}65.global-search input:focus, .repo-filters input:focus, .search-page-form input:focus {66 border-color: var(--accent);67}68.topnav-links { margin-left: auto; display: flex; align-items: center; gap: 12px; }69.topnav-ext { color: var(--muted); font-size: 14px; }70.icon-btn {71 background: var(--surface); color: var(--muted); border: 1px solid var(--border);72 border-radius: var(--radius); padding: 7px 9px; cursor: pointer; line-height: 0;73}74.icon-btn:hover { border-color: var(--border-strong); color: var(--text); }75html[data-theme='dark'] .icon-moon { display: none; }76html[data-theme='light'] .icon-sun { display: none; }7778/* ── Buttons & chips ─────────────────────── */79.btn {80 display: inline-flex; align-items: center; gap: 6px;81 background: var(--surface); color: var(--text);82 border: 1px solid var(--border); border-radius: var(--radius);83 padding: 6px 14px; font-size: 14px; cursor: pointer;84}85.btn:hover { border-color: var(--border-strong); text-decoration: none; }86.btn-primary { background: var(--accent); border-color: var(--accent); color: #fff; }87.btn-primary:hover { filter: brightness(1.08); }88.btn-sm { padding: 4px 10px; font-size: 13px; }89.copy-btn.copied { border-color: var(--accent-2); color: var(--accent-2); }9091.chip {92 display: inline-flex; align-items: center;93 border-radius: 999px; padding: 1px 10px; font-size: 12px;94 background: var(--chip-bg); color: var(--accent); border: 1px solid transparent;95}96.chip-topic:hover { border-color: var(--accent); text-decoration: none; }97.chip-public { color: var(--muted); background: transparent; border-color: var(--border-strong); }98.chip-license { color: var(--accent-2); background: rgba(34, 211, 170, 0.1); }99.chip-default { color: var(--accent-2); background: rgba(34, 211, 170, 0.1); }100.chip-pin { color: var(--accent-2); background: transparent; }101.chip-row { display: flex; flex-wrap: wrap; gap: 6px; }102.count {103 background: var(--surface-2); border-radius: 999px; padding: 0 8px;104 font-size: 12px; color: var(--muted);105}106107/* ── Hero ────────────────────────────────── */108.hero {109 display: flex; align-items: center; justify-content: space-between;110 flex-wrap: wrap; gap: 20px; padding: 28px 0 20px;111 border-bottom: 1px solid var(--border); margin-bottom: 28px;112}113.hero-id { display: flex; align-items: center; gap: 18px; }114.hero-avatar {115 width: 64px; height: 64px; border-radius: 18px; background: var(--accent);116 color: #fff; font-weight: 700; font-size: 20px;117 display: flex; align-items: center; justify-content: center; flex: none;118}119.hero-name { margin: 0; font-size: 24px; }120.hero-tagline { margin: 2px 0 0; color: var(--muted); }121.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; }122.badge-stat {123 background: var(--surface); border: 1px solid var(--border);124 border-radius: var(--radius); padding: 8px 14px; font-size: 14px; color: var(--muted);125}126.badge-stat strong { color: var(--text); margin-right: 4px; }127128.section-title { font-size: 17px; margin: 0 0 14px; display: flex; align-items: center; gap: 8px; }129130/* ── Repo cards / home ───────────────────── */131.pinned-grid {132 display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));133 gap: 14px; margin-bottom: 32px;134}135.home-columns { display: grid; grid-template-columns: 1fr 300px; gap: 32px; align-items: start; }136.repo-list { display: flex; flex-direction: column; gap: 12px; }137.repo-card {138 background: var(--surface); border: 1px solid var(--border);139 border-radius: var(--radius); padding: 16px 18px;140 transition: border-color 0.15s ease;141}142.repo-card:hover { border-color: var(--border-strong); }143.repo-card-name { margin: 0 0 4px; font-size: 16px; display: flex; align-items: center; gap: 8px; }144.repo-card-desc { margin: 0 0 10px; color: var(--muted); font-size: 14px; }145.repo-card .chip-row { margin-bottom: 10px; }146.repo-card-meta { display: flex; gap: 16px; color: var(--muted); font-size: 13px; flex-wrap: wrap; }147.lang-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; flex: none; }148.lang-dot-label { display: inline-flex; align-items: center; gap: 6px; }149150.repo-controls { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }151.repo-filters { display: flex; gap: 8px; flex-wrap: wrap; }152.repo-filters input { max-width: 200px; }153.repo-filters select, .ref-select {154 background: var(--surface); color: var(--text); border: 1px solid var(--border);155 border-radius: var(--radius); padding: 7px 10px; font-size: 14px;156}157.empty-state { text-align: center; padding: 40px 0; color: var(--muted); }158159/* ── Activity feed ───────────────────────── */160.activity-feed { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; font-size: 14px; }161.activity-feed li { display: flex; gap: 10px; align-items: baseline; }162.activity-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-2); flex: none; position: relative; top: -1px; }163.ref-inline { font-size: 12px; color: var(--muted); }164165/* ── Heatmap ─────────────────────────────── */166.heatmap-section { margin-top: 40px; }167.heatmap-scroll { overflow-x: auto; padding-bottom: 6px; }168.heatmap-label { fill: var(--muted); font-size: 9px; font-family: var(--font-ui); }169.heatmap-cell[data-level='0'] { fill: var(--heat-0); }170.heatmap-cell[data-level='1'] { fill: var(--heat-1); }171.heatmap-cell[data-level='2'] { fill: var(--heat-2); }172.heatmap-cell[data-level='3'] { fill: var(--heat-3); }173.heatmap-cell[data-level='4'] { fill: var(--heat-4); }174.heatmap-legend { display: flex; align-items: center; gap: 4px; color: var(--muted); font-size: 12px; margin-top: 6px; }175.heatmap-cell-demo { width: 11px; height: 11px; border-radius: 2px; display: inline-block; }176.heatmap-cell-demo[data-level='0'] { background: var(--heat-0); }177.heatmap-cell-demo[data-level='1'] { background: var(--heat-1); }178.heatmap-cell-demo[data-level='2'] { background: var(--heat-2); }179.heatmap-cell-demo[data-level='3'] { background: var(--heat-3); }180.heatmap-cell-demo[data-level='4'] { background: var(--heat-4); }181182/* ── Repo header ─────────────────────────── */183.repo-header { padding-bottom: 0; margin-bottom: 20px; border-bottom: 1px solid var(--border); }184.repo-title { font-size: 20px; margin: 4px 0 6px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; font-weight: 500; }185.repo-owner { color: var(--muted); }186.repo-sep { color: var(--muted); }187.repo-name { font-weight: 700; }188.repo-desc { margin: 0 0 8px; color: var(--muted); max-width: 780px; }189.repo-meta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 10px; }190.repo-homepage { font-size: 14px; }191.lang-bar { display: flex; height: 8px; border-radius: 4px; overflow: hidden; background: var(--surface-2); margin: 6px 0; }192.lang-bar-seg { display: block; height: 100%; min-width: 2px; }193.lang-legend { display: flex; flex-wrap: wrap; gap: 14px; font-size: 13px; margin-bottom: 12px; }194.repo-tabs { display: flex; gap: 4px; align-items: center; margin-top: 8px; overflow-x: auto; }195.repo-tab {196 color: var(--muted); padding: 8px 14px; border-radius: var(--radius) var(--radius) 0 0;197 border-bottom: 2px solid transparent; display: inline-flex; gap: 7px; align-items: center;198 white-space: nowrap; font-size: 14px;199}200.repo-tab:hover { color: var(--text); text-decoration: none; }201.repo-tab.active { color: var(--text); border-bottom-color: var(--accent); font-weight: 600; }202.repo-tab-meta { margin-left: auto; font-size: 13px; white-space: nowrap; }203204/* ── Repo toolbar / clone box ────────────── */205.repo-toolbar { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between; margin-bottom: 14px; }206.clone-box { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }207.clone-url {208 background: var(--surface); border: 1px solid var(--border); color: var(--muted);209 border-radius: var(--radius); padding: 6px 10px; font-family: var(--font-mono);210 font-size: 13px; width: 300px; max-width: 60vw;211}212.clone-snippet {213 background: var(--code-bg); border: 1px solid var(--border); border-radius: var(--radius);214 padding: 14px 16px; font-size: 13px; overflow-x: auto; display: inline-block; text-align: left;215}216.path-breadcrumb { font-family: var(--font-mono); font-size: 14px; display: flex; flex-wrap: wrap; gap: 4px; align-items: center; }217.crumb-sep { color: var(--muted); }218219/* ── File table ──────────────────────────── */220.file-table {221 width: 100%; border-collapse: collapse; border: 1px solid var(--border);222 border-radius: var(--radius); overflow: hidden; background: var(--surface);223 font-size: 14px; margin-bottom: 24px;224}225.file-table td { padding: 8px 14px; border-top: 1px solid var(--border); }226.file-table tr:first-child td { border-top: 0; }227.file-row:hover { background: var(--surface-2); }228.file-name { white-space: nowrap; width: 32%; }229.file-name a { color: var(--text); }230.file-name a:hover { color: var(--accent); }231.file-icon { vertical-align: -3px; margin-right: 7px; color: var(--muted); }232.icon-dir { color: var(--accent); }233.file-commit { overflow: hidden; text-overflow: ellipsis; max-width: 400px; white-space: nowrap; }234.file-commit a:hover { color: var(--accent); }235.file-date { text-align: right; white-space: nowrap; font-size: 13px; }236237/* ── README / markdown section ───────────── */238.readme-section {239 border: 1px solid var(--border); border-radius: var(--radius);240 background: var(--surface); margin-bottom: 32px;241}242.readme-header {243 display: flex; align-items: center; gap: 8px; padding: 10px 20px;244 border-bottom: 1px solid var(--border); color: var(--muted); font-size: 13px;245 position: sticky; top: 56px; background: var(--surface); border-radius: var(--radius) var(--radius) 0 0;246}247.readme-section .markdown-body { padding: 24px 32px 32px; }248.empty-repo { text-align: center; padding: 48px 20px; }249.notice {250 background: var(--accent-soft); border: 1px solid var(--accent);251 border-radius: var(--radius); padding: 8px 14px; font-size: 13px; margin: 12px;252}253254/* ── Blob view ───────────────────────────── */255.blob-card { border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); overflow: hidden; }256.blob-header {257 display: flex; flex-wrap: wrap; gap: 10px; align-items: center;258 padding: 10px 16px; border-bottom: 1px solid var(--border);259 position: sticky; top: 56px; background: var(--surface); z-index: 10;260}261.blob-meta { display: flex; gap: 8px; align-items: center; font-size: 13px; }262.blob-actions { margin-left: auto; display: flex; gap: 6px; flex-wrap: wrap; }263.blob-image { text-align: center; padding: 32px; }264.blob-image img { max-width: 100%; border-radius: var(--radius); }265.blob-binary { text-align: center; padding: 48px 20px; color: var(--muted); }266.blob-markdown { padding: 24px 32px 32px; }267268.code-view { overflow-x: auto; }269.code-view pre.shiki {270 margin: 0; padding: 12px 0; background: transparent !important;271 font-size: 13px; line-height: 1.6; min-width: max-content;272}273.code-view .line { display: block; padding: 0 16px 0 0; min-height: 1.6em; }274.code-view .line:target { background: var(--accent-soft); }275.code-view .line.range-hl { background: var(--accent-soft); }276.code-view .ln {277 display: inline-block; width: 52px; padding-right: 16px; text-align: right;278 color: var(--muted); user-select: none; font-size: 12px; text-decoration: none;279 position: sticky; left: 0; background: var(--surface);280}281.code-view .ln:hover { color: var(--accent); }282.plain-readme { padding: 20px; overflow-x: auto; font-size: 13px; }283284/* ── Commits ─────────────────────────────── */285.commit-list { list-style: none; margin: 0 0 20px; padding: 0; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); }286.commit-row { display: flex; gap: 12px; align-items: flex-start; padding: 12px 16px; border-top: 1px solid var(--border); }287.commit-row:first-child { border-top: 0; }288.commit-avatar { flex: none; border-radius: 6px; overflow: hidden; background: var(--surface-2); line-height: 0; padding: 2px; border: 1px solid var(--border); }289.commit-main { flex: 1; min-width: 0; }290.commit-subject { font-weight: 600; display: flex; gap: 8px; align-items: baseline; }291.commit-subject a { color: var(--text); }292.commit-subject a:hover { color: var(--accent); }293.commit-body-toggle summary { cursor: pointer; color: var(--muted); background: var(--surface-2); border-radius: 4px; padding: 0 8px; display: inline-block; }294.commit-body { font-size: 13px; color: var(--muted); white-space: pre-wrap; margin: 8px 0 0; }295.commit-meta { font-size: 13px; margin-top: 3px; display: flex; flex-wrap: wrap; gap: 6px; }296.sha-chip {297 font-family: var(--font-mono); font-size: 12px; background: var(--surface-2);298 color: var(--accent); border: 1px solid var(--border); border-radius: 6px;299 padding: 3px 8px; cursor: pointer; flex: none;300}301.sha-chip:hover { border-color: var(--accent); }302.pagination { display: flex; gap: 10px; justify-content: center; margin: 20px 0; }303304/* ── Commit detail / diffs ───────────────── */305.commit-detail-header {306 border: 1px solid var(--border); border-radius: var(--radius);307 background: var(--surface); padding: 16px 20px; margin-bottom: 18px;308}309.commit-detail-subject { margin: 0 0 8px; font-size: 18px; }310.commit-detail-meta { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; font-size: 14px; }311.commit-stats { margin: 12px 0 0; font-size: 14px; color: var(--muted); }312.diff-add { color: var(--add-text); font-weight: 600; }313.diff-del { color: var(--del-text); font-weight: 600; }314315.diff-file { border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); margin-bottom: 16px; overflow: hidden; }316.diff-file-header {317 display: flex; gap: 10px; align-items: center; padding: 9px 14px;318 cursor: pointer; background: var(--surface-2); font-size: 13px; list-style: none;319 position: sticky; top: 56px; z-index: 5;320}321.diff-file-header::-webkit-details-marker { display: none; }322.diff-file-header::before { content: '▾'; color: var(--muted); }323.diff-file:not([open]) .diff-file-header::before { content: '▸'; }324.diff-path { font-size: 13px; word-break: break-all; }325.diff-counts { margin-left: auto; white-space: nowrap; }326.diff-status { border-radius: 4px; padding: 1px 7px; font-size: 11px; text-transform: uppercase; font-weight: 700; }327.diff-status-added { background: var(--add-bg); color: var(--add-text); }328.diff-status-deleted { background: var(--del-bg); color: var(--del-text); }329.diff-status-modified { background: var(--accent-soft); color: var(--accent); }330.diff-status-renamed { background: var(--chip-bg); color: var(--accent-2); }331332.diff-table-wrap { overflow-x: auto; }333.diff-table { border-collapse: collapse; width: 100%; font-family: var(--font-mono); font-size: 12.5px; line-height: 1.55; }334.diff-gutter {335 width: 44px; min-width: 44px; text-align: right; padding: 0 8px;336 color: var(--muted); user-select: none; border-right: 1px solid var(--border);337 font-size: 11.5px; vertical-align: top;338}339.diff-code { padding: 0 10px; white-space: pre; }340.diff-sign { display: inline-block; width: 14px; user-select: none; color: var(--muted); }341.diff-line-add { background: var(--add-bg); }342.diff-line-add .diff-sign { color: var(--add-text); }343.diff-line-del { background: var(--del-bg); }344.diff-line-del .diff-sign { color: var(--del-text); }345.diff-hunk-header td { background: var(--hunk-bg); color: var(--muted); padding: 3px 10px; font-size: 12px; }346.diff-binary { padding: 16px; }347348/* ── Blame ───────────────────────────────── */349.blame-table { border-collapse: collapse; width: 100%; font-size: 13px; }350.blame-commit {351 border-top: 1px solid var(--border); border-right: 1px solid var(--border);352 padding: 4px 10px; width: 320px; min-width: 240px; vertical-align: top;353 background: var(--surface-2);354}355.blame-commit-inner { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }356.blame-date { font-size: 12px; width: 100%; padding-left: 30px; }357.blame-ln { width: 44px; text-align: right; color: var(--muted); padding: 0 8px; user-select: none; font-family: var(--font-mono); font-size: 12px; }358.blame-code pre { margin: 0; font-size: 12.5px; line-height: 1.55; white-space: pre; }359.blame-line[data-age='0'] .blame-commit { box-shadow: inset 3px 0 0 var(--accent); }360.blame-line[data-age='1'] .blame-commit { box-shadow: inset 3px 0 0 color-mix(in srgb, var(--accent) 85%, transparent); }361.blame-line[data-age='2'] .blame-commit { box-shadow: inset 3px 0 0 color-mix(in srgb, var(--accent) 70%, transparent); }362.blame-line[data-age='3'] .blame-commit { box-shadow: inset 3px 0 0 color-mix(in srgb, var(--accent) 58%, transparent); }363.blame-line[data-age='4'] .blame-commit { box-shadow: inset 3px 0 0 color-mix(in srgb, var(--accent) 47%, transparent); }364.blame-line[data-age='5'] .blame-commit { box-shadow: inset 3px 0 0 color-mix(in srgb, var(--accent) 38%, transparent); }365.blame-line[data-age='6'] .blame-commit { box-shadow: inset 3px 0 0 color-mix(in srgb, var(--accent) 30%, transparent); }366.blame-line[data-age='7'] .blame-commit { box-shadow: inset 3px 0 0 color-mix(in srgb, var(--accent) 22%, transparent); }367.blame-line[data-age='8'] .blame-commit { box-shadow: inset 3px 0 0 color-mix(in srgb, var(--accent) 15%, transparent); }368.blame-line[data-age='9'] .blame-commit { box-shadow: inset 3px 0 0 color-mix(in srgb, var(--accent) 8%, transparent); }369370/* ── Branch/tag tables ───────────────────── */371.ref-table {372 width: 100%; border-collapse: collapse; background: var(--surface);373 border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;374 font-size: 14px;375}376.ref-table th { text-align: left; padding: 10px 14px; font-size: 13px; color: var(--muted); border-bottom: 1px solid var(--border); }377.ref-table td { padding: 10px 14px; border-top: 1px solid var(--border); }378.ref-name { font-family: var(--font-mono); font-size: 13px; }379.ahead-behind { display: inline-flex; gap: 10px; font-family: var(--font-mono); font-size: 13px; }380.archive-links { display: flex; gap: 6px; }381382/* ── Search page ─────────────────────────── */383.search-page-form { display: flex; gap: 8px; margin-bottom: 28px; max-width: 560px; }384.search-results { list-style: none; margin: 0 0 32px; padding: 0; display: flex; flex-direction: column; gap: 16px; }385.search-results li { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 18px; }386.search-hit-name { font-weight: 600; font-size: 15px; }387.search-snippet { color: var(--muted); font-size: 13px; margin: 6px 0 0; }388389/* ── Error pages ─────────────────────────── */390.error-page { text-align: center; padding: 72px 20px; }391.error-code { font-size: 96px; font-weight: 700; color: var(--accent); font-family: var(--font-mono); line-height: 1; }392.error-message { font-size: 18px; color: var(--muted); margin: 16px 0 8px; }393.error-art { display: inline-block; text-align: left; color: var(--muted); background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 18px; font-size: 13px; margin: 16px 0 24px; }394395/* ── Mermaid blocks ──────────────────────── */396.mermaid-block { margin: 16px 0; }397.mermaid-src { display: none; }398.mermaid-block[data-rendered='0'] .mermaid-src { display: block; }399.mermaid-target svg { max-width: 100%; }400401/* ── Footer ──────────────────────────────── */402.footer {403 border-top: 1px solid var(--border); color: var(--muted);404 padding: 20px 0; font-size: 13px; text-align: center;405}406407/* ── Responsive ──────────────────────────── */408@media (max-width: 960px) {409 .home-columns { grid-template-columns: 1fr; }410 .file-commit { display: none; }411 .blame-commit { width: 200px; min-width: 150px; }412}413@media (max-width: 640px) {414 .global-search { display: none; }415 .hero { flex-direction: column; align-items: flex-start; }416 .pinned-grid { grid-template-columns: 1fr; }417 .clone-url { width: 100%; max-width: none; }418 .repo-toolbar { flex-direction: column; align-items: stretch; }419 .file-date { display: none; }420 .readme-section .markdown-body, .blob-markdown { padding: 16px; }421}422423/* ── Releases ────────────────────────────── */424.release-list { display: flex; flex-direction: column; gap: 16px; }425.release-card {426 background: var(--surface); border: 1px solid var(--border);427 border-radius: var(--radius); padding: 16px 20px;428}429.release-header { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin-bottom: 10px; }430.release-tag { margin: 0; font-size: 17px; font-family: var(--font-mono); }431.release-subject { color: var(--muted); }432.release-assets { list-style: none; margin: 0 0 12px; padding: 0; display: flex; flex-direction: column; gap: 8px; }433.release-assets li {434 display: flex; align-items: center; gap: 10px;435 background: var(--surface-2); border: 1px solid var(--border);436 border-radius: var(--radius); padding: 8px 14px; font-size: 14px;437}438.release-assets li svg { color: var(--accent-2); flex: none; }439