JavaScript-optional public web frontend for Bluesky anartia.kelinci.net
sveltekit atcute bluesky typescript svelte
7
fork

Configure Feed

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

feat: make it clear you need js

Mary 7d45b70f ba9e0c0c

+10
+10
src/lib/components/embeds/video-standalone-embed.svelte
··· 56 56 </div> 57 57 {/snippet} 58 58 59 + <noscript class="alert">HLS video playback requires JavaScript to be enabled.</noscript> 60 + 59 61 {#if dev} 60 62 {@render Content()} 61 63 {:else} ··· 134 136 .hack { 135 137 width: 100vw; 136 138 height: 100vh; 139 + } 140 + 141 + .alert { 142 + border-radius: 6px; 143 + background: #fca5a5; 144 + padding: 8px 12px; 145 + color: #450a0a; 146 + font-weight: 500; 137 147 } 138 148 </style>