Skip to content
Snippets Groups Projects
Commit d7dc06fc authored by xaralis's avatar xaralis
Browse files

Improve user selection color

parent d4c6c804
No related branches found
No related tags found
No related merge requests found
Pipeline #945 passed
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
*/ */
@import "tailwindcss/components"; @import "tailwindcss/components";
/** /**
* Custom components * Custom components
*/ */
@import "./atoms/avatar.pcss"; @import "./atoms/avatar.pcss";
...@@ -65,11 +65,15 @@ ...@@ -65,11 +65,15 @@
*/ */
@import "tailwindcss/utilities"; @import "tailwindcss/utilities";
/** ::-moz-selection {
* Custom utilities color: theme("colors.white");
*/ background: theme("colors.grey.500");
@import "./utils.pcss"; }
::selection {
color: theme("colors.white");
background: theme("colors.grey.500");
}
:root { :root {
font-size: 16px; font-size: 16px;
...@@ -96,3 +100,8 @@ a.icon-link:hover { ...@@ -96,3 +100,8 @@ a.icon-link:hover {
[v-cloak] { [v-cloak] {
@apply hidden; @apply hidden;
} }
/**
* Custom utilities
*/
@import "./utils.pcss";
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment