Mirror of my GitHub Pages site
0

Configure Feed

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

Make footer responsive

Spenser Black (Jul 10, 2026, 10:57 AM EDT) 920f4231 d0b49aec

+7 -1
+7 -1
src/components/Footer.astro
··· 36 36 justify-content: space-around; 37 37 } 38 38 ul.horizontal { 39 - flex-direction: row; 39 + /* NOTE Make Don't display items horizontally unless the screen is wide enough. */ 40 + flex-direction: column; 41 + } 42 + @media (min-width: 640px) { 43 + ul.horizontal { 44 + flex-direction: row; 45 + } 40 46 } 41 47 ul.vertical { 42 48 flex-direction: column;