Fix styles

This commit is contained in:
Jan-Lukas Else 2021-11-15 22:21:48 +01:00
parent 1aa2a8f655
commit 2855c4724e
2 changed files with 10 additions and 7 deletions

View File

@ -53,14 +53,15 @@ body {
word-break: break-word;
overflow-wrap: break-word;
* {
*:not([class*='c-']) {
@include color(color, primary);
}
* {
max-width: 100%;
&::selection {
@include color(color, background);
@include color(background, primary);
}
}
*::selection {
@include color(color, background);
@include color(background, primary);
}
}

View File

@ -30,9 +30,11 @@ body {
word-break: break-word;
overflow-wrap: break-word;
}
body * {
body *:not([class*=c-]) {
color: #000;
color: var(--primary, #000);
}
body * {
max-width: 100%;
}
body *::selection {