8 lines
201 B
SCSS
8 lines
201 B
SCSS
|
|
// from Chris Coyier on Jul 26, 2016: https://css-tricks.com/overriding-the-default-text-selection-color-with-css/
|
|
|
|
body::selection {
|
|
color: $selection-color-alt;
|
|
background: $selection-bg-alt;
|
|
}
|