Personal Site
0
fork

Configure Feed

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

Create a "scroll this way" indicator.

TODO: center arrow and add gradient

vielle.dev 28d8042e 18baff85

verified
+14 -2
+14 -2
src/components/home/playing/NowPlaying.astro
··· 228 contain: inline-size; 229 overflow: auto visible; 230 231 - display: flex; 232 - flex-direction: row; 233 align-items: center; 234 } 235 } 236
··· 228 contain: inline-size; 229 overflow: auto visible; 230 231 + display: grid; 232 + grid-template-columns: auto auto 40px; 233 align-items: center; 234 + 235 + &::after { 236 + /* visual hint */ 237 + content: ">" / ""; 238 + position: sticky; 239 + right: 0px; 240 + 241 + height: 100%; 242 + width: 40px; 243 + 244 + background-color: white; 245 + } 246 } 247 } 248