my website, hosted on wisp.place
0
fork

Configure Feed

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

feat: white text color on narrow viewport

intergrav 5e8bacfa 38483b09

+9
+8
public/devingiscus.css
··· 83 83 --text-normal-color: #f9eae1; 84 84 --color-segmented-control-bg: transparent; 85 85 } 86 + 87 + /* mobile devices: make background darker for oled screens */ 88 + @media (max-width: 32rem) { 89 + :root { 90 + --text-muted-color: #ababab; 91 + --text-normal-color: #ffffff; 92 + } 93 + } 86 94 } 87 95 88 96 .gsc-comments .gsc-header .gsc-left-header em a {
+1
src/styles/global.css
··· 38 38 39 39 body { 40 40 background-color: rgb(0, 0, 0); 41 + color: #ffffff; 41 42 } 42 43 } 43 44 }