WIP! A BB-style forum, on the ATmosphere! We're still working... we'll be back soon when we have something to show off!
node typescript hono htmx atproto
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

style(web): add admin nav grid CSS (ATB-42)

Malpercio 441e0f7b e7d4609c

+36
+36
apps/web/public/static/css/theme.css
··· 910 910 display: block; 911 911 } 912 912 } 913 + 914 + /* ─── Admin Panel ───────────────────────────────────────────────────────── */ 915 + 916 + .admin-nav-grid { 917 + display: grid; 918 + grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); 919 + gap: var(--space-md); 920 + margin-top: var(--space-lg); 921 + } 922 + 923 + .admin-nav-card { 924 + text-decoration: none; 925 + color: inherit; 926 + display: block; 927 + } 928 + 929 + .admin-nav-card:hover .card { 930 + border-color: var(--color-primary); 931 + } 932 + 933 + .admin-nav-card__icon { 934 + font-size: 2rem; 935 + margin-bottom: var(--space-sm); 936 + } 937 + 938 + .admin-nav-card__title { 939 + font-family: var(--font-heading); 940 + font-weight: var(--font-weight-bold); 941 + font-size: var(--font-size-lg); 942 + margin-bottom: var(--space-xs); 943 + } 944 + 945 + .admin-nav-card__description { 946 + color: var(--color-text-muted); 947 + font-size: var(--font-size-sm); 948 + }