diff --git a/public/site.css b/public/site.css index 1a0b555..01ac30c 100644 --- a/public/site.css +++ b/public/site.css @@ -215,34 +215,12 @@ h1 { display: flex; justify-content: center; align-items: baseline; - gap: 0.9em; + gap: 0.45em; margin-top: 0.85em; color: var(--site-text-muted); font-size: 0.8125rem; } -.webring-copy { - display: inline-flex; - align-items: baseline; - gap: 0.45em; -} - -.webring-label { - color: var(--site-text-secondary); - font-weight: 500; -} - -.webring-description { - color: var(--site-text-muted); - font-size: 0.75rem; -} - -.webring-links { - display: inline-flex; - align-items: center; - gap: 0.45em; -} - .webring a { color: var(--site-text-secondary); text-decoration: none; @@ -253,20 +231,6 @@ h1 { text-decoration: underline; } -@media (max-width: 520px) { - .webring { - flex-direction: column; - align-items: center; - gap: 0.3em; - } - - .webring-copy { - flex-direction: column; - align-items: center; - gap: 0.05em; - } -} - /* Post list items */ .post-item { diff --git a/src/components/site.tsx b/src/components/site.tsx index 88c81c6..47d5e1d 100644 --- a/src/components/site.tsx +++ b/src/components/site.tsx @@ -45,7 +45,7 @@ export async function Site() { - + ); } diff --git a/src/components/webring.tsx b/src/components/webring.tsx index 65f4039..c6ad969 100644 --- a/src/components/webring.tsx +++ b/src/components/webring.tsx @@ -16,19 +16,13 @@ export function Webring({ return (
-
- {name} webring - visit another Letta person -
- - previous - - - about - - - next - + previous + + + {name} webring + + + next
); }