ildi-wp/dev/scss/tools/_mixins.scss

37 lines
514 B
SCSS
Raw Normal View History

2018-04-24 20:41:34 -05:00
@mixin slim-ul {
ul {
margin: 0;
padding: 0;
list-style: none;
li {
margin: 0;
padding: 0;
list-style: none;
}
}
}
2018-07-24 18:52:51 -05:00
@mixin sr-only {
position: absolute;
border: 0;
padding: 0;
width: 1px;
height: 1px;
overflow: hidden;
white-space: nowrap;
clip: rect(0, 0, 0, 0);
&.with-focus {
&:active,
&:focus {
position: static;
width: auto;
height: auto;
overflow: visible;
white-space: normal;
clip: auto;
}
}
}