Skip to content

Commit

Permalink
squash!
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaRHristov committed Jun 30, 2024
1 parent c02ca7f commit 42ea368
Showing 1 changed file with 36 additions and 2 deletions.
38 changes: 36 additions & 2 deletions Source/Stylesheet/Global.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,51 @@ body {
}

body {
@apply flex
@apply dark:bg-black
flex
flex-grow
flex-col
bg-white
tabular-nums
text-black
antialiased
sm:subpixel-antialiased
dark:bg-black
dark:text-white;

font-variant-ligatures: no-common-ligatures;

--swup-overlay-theme-color: white;
--swup-overlay-theme-duration: 0.2s;
--swup-overlay-theme-delay: 0s;
--swup-overlay-theme-scale: 1.2;
--swup-overlay-theme-skew: 0deg;
}

@media (prefers-color-scheme: dark) {
body {
--swup-overlay-theme-color: black;
}
}

*::selection,
::selection {
text-shadow: none;

@apply bg-amber-400
text-black;
}

@media (prefers-color-scheme: dark) {
*::selection,
::selection {
@apply bg-orange-400
text-white;
}
}

img {
@apply inline-block
select-none
align-top
outline-none;
}

0 comments on commit 42ea368

Please sign in to comment.