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.

style: clean up comments and improve CSS for site-document; remove unnecessary comment in AltstorePalPeek component

-10
-9
public/css/site-document.css
··· 1 - /** 2 - * Shared layout + “prose” typography for static document pages (contact, privacy, terms). 3 - * Scope everything under .site-doc so .container and other globals stay untouched. 4 - */ 5 - 6 1 @font-face { 7 2 font-family: 'Figtree'; 8 3 src: url('/fonts/Figtree/Figtree-VariableFont_wght.woff2') format('woff2'); ··· 48 43 flex-direction: column; 49 44 justify-content: center; 50 45 align-items: center; 51 - /* 52 - * Fluid vertical inset (no height breakpoints): same idea as --site-page-padding-x 53 - * clamp(1rem, 5vw, 2rem) — vw for width scale, vmin so short/landscape viewports tighten too. 54 - */ 55 46 padding-top: clamp(0.2rem, 1vw + 0.8vmin, 1.75rem); 56 47 padding-bottom: clamp(0.75rem, 3vw + 1vmin, 2rem); 57 48 }
-1
src/components/AltstorePalPeek.astro
··· 11 11 12 12 const { href, locale = 'en', ariaLabel } = Astro.props; 13 13 const t = useTranslations(locale); 14 - /** Same as `href` — AltStore PAL deep link for scanning from iPhone */ 15 14 const qrCodeImageUrl = `https://api.qrserver.com/v1/create-qr-code/?size=200x200&bgcolor=000000&color=f3f5fe&data=${encodeURIComponent(href)}`; 16 15 --- 17 16