Fixed selection style

This commit is contained in:
kvakazyambra 2022-11-10 00:47:52 +03:00
parent c92fd115c4
commit 580b8426b8
3 changed files with 25 additions and 0 deletions

View File

@ -39,6 +39,11 @@
padding: 0 $container-padding-x; padding: 0 $container-padding-x;
} }
} }
::selection {
background: #fff;
color: #000;
}
} }
.discoursFooterContent { .discoursFooterContent {

View File

@ -19,6 +19,11 @@
.wide-container { .wide-container {
padding: 0; padding: 0;
} }
::selection {
background: #fff;
color: #000;
}
} }
.about-discours__actions { .about-discours__actions {

View File

@ -20,6 +20,11 @@
box-sizing: border-box; box-sizing: border-box;
} }
::selection {
background: #000;
color: #fff;
}
html { html {
color: $default-color; color: $default-color;
font-size: 62.5%; font-size: 62.5%;
@ -79,6 +84,11 @@ h2 {
padding: 0 0.15em; padding: 0 0.15em;
box-decoration-break: clone; box-decoration-break: clone;
-webkit-box-decoration-break: clone; -webkit-box-decoration-break: clone;
&::selection {
background: #fff;
color: #000;
}
} }
} }
@ -569,6 +579,11 @@ figcaption {
padding-top: $grid-gutter-width; padding-top: $grid-gutter-width;
} }
::selection {
background: #fff;
color: #000;
}
h2 { h2 {
@include font-size(4.4rem); @include font-size(4.4rem);