[READ-ONLY] Mirror of https://github.com/flo-bit/skywatched. review movies and tv shows, based on at proto skywatched.app
0

Configure Feed

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

skywatched / src / app.css
672 B 40 lines
1@import 'tailwindcss/base'; 2@import 'tailwindcss/components'; 3@import 'tailwindcss/utilities'; 4 5::selection { 6 @apply bg-accent-800/50 text-accent-50; 7} 8 9/* width */ 10::-webkit-scrollbar { 11 width: 5px; 12 height: 5px; 13} 14 15/* Track */ 16::-webkit-scrollbar-track { 17 @apply bg-transparent; 18} 19 20/* Handle */ 21::-webkit-scrollbar-thumb { 22 @apply bg-base-600 transition-colors duration-150 hover:bg-accent-500; 23 border-radius: 5px; 24} 25 26.poster { 27 view-transition-name: var(--name); 28} 29 30.title { 31 view-transition-name: var(--name); 32} 33 34@media (prefers-reduced-motion) { 35 ::view-transition-group(*), 36 ::view-transition-old(*), 37 ::view-transition-new(*) { 38 animation: none !important; 39 } 40}