Bluesky app fork with some witchin' additions 馃挮
witchsky.app
bluesky
fork
client
1@tailwind base;
2@tailwind components;
3@tailwind utilities;
4
5:root {
6 -webkit-font-smoothing: antialiased;
7 -moz-osx-font-smoothing: grayscale;
8 text-rendering: optimizeLegibility;
9}
10
11.break-word {
12 word-break: break-word;
13}
14
15#app {
16 color-scheme: light dark;
17}
18
19select {
20 background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' height='14px' width='14px' fill='none' viewBox='0 0 24 24'><path fill='black' fill-rule='evenodd' d='M3.293 8.293a1 1 0 0 1 1.414 0L12 15.586l7.293-7.293a1 1 0 1 1 1.414 1.414l-8 8a1 1 0 0 1-1.414 0l-8-8a1 1 0 0 1 0-1.414Z' clip-rule='evenodd'/></svg>");
21 background-repeat: no-repeat;
22 background-position: calc(100% - 0.75rem) center;
23 padding-right: 2rem;
24
25 @media (prefers-color-scheme: dark) {
26 background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' height='14px' width='14px' fill='none' viewBox='0 0 24 24'><path fill='white' fill-rule='evenodd' d='M3.293 8.293a1 1 0 0 1 1.414 0L12 15.586l7.293-7.293a1 1 0 1 1 1.414 1.414l-8 8a1 1 0 0 1-1.414 0l-8-8a1 1 0 0 1 0-1.414Z' clip-rule='evenodd'/></svg>");
27 }
28}