source for getorbyt.com getorbyt.com/
client bsky orbytapp app orbyt bluesky getorbyt orbytvideo atproto video
0
fork

Configure Feed

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

feat: enhance site footer layout for better responsiveness on smaller screens

+27
+27
public/css/site-footer.css
··· 66 66 align-items: center; 67 67 padding: 0.3rem 0 0.3rem 2px; 68 68 } 69 + 70 + @media (max-width: 600px) { 71 + .site-footer { 72 + row-gap: 0; 73 + column-gap: 0; 74 + } 75 + 76 + .site-footer nav { 77 + display: grid; 78 + grid-template-columns: 1fr 1fr; 79 + width: 100%; 80 + } 81 + 82 + .site-footer a { 83 + min-height: 2.75rem; 84 + display: flex; 85 + align-items: center; 86 + padding: 0 0.5rem; 87 + white-space: normal; 88 + } 89 + 90 + .site-footer__lang { 91 + min-height: 2.75rem; 92 + padding: 0 0.5rem; 93 + width: 100%; 94 + } 95 + }