12345678910111213141516171819202122232425 |
- $code-font-size : 0.9rem;
- @mixin selector($foreground-color, $background-color) {
- ::selection {
- background : $background-color;
- color : $foreground-color;
- }
- }
- @mixin user-select($value) {
- user-select : $value;
- }
- @mixin rounded-borders() {
- border-radius : 5px;
- }
- @mixin top-rounded-borders() {
- border-radius : 5px 5px 0 0;
- }
- @mixin bottom-rounded-borders() {
- border-radius : 0 0 5px 5px;
- }
|