_sass: base: add text selection custom colours

This commit is contained in:
lifehackerhansol 2024-01-13 10:17:18 -08:00
parent c9a71194bf
commit 56cbbd3cca
No known key found for this signature in database
GPG key ID: 80FB184AFC0B3B0E

View file

@ -6,6 +6,12 @@ html {
/* sticky footer fix */ /* sticky footer fix */
position: relative; position: relative;
min-height: 100%; min-height: 100%;
/* hacks-guide change start: add text selection custom colours */
::selection {
color: $text-color;
background: $text-highlight-color;
}
/* hacks-guide change end */
} }
body { body {