forked from a64f7bb4-7358-4778-9fbe-3b882c34cc1d/v1
33 lines
543 B
SCSS
33 lines
543 B
SCSS
@function icon($name) {
|
|
@return url(map-get($sprites, $name));
|
|
}
|
|
|
|
@mixin visually-hidden {
|
|
position: absolute !important;
|
|
clip: rect(1px, 1px, 1px, 1px);
|
|
overflow: hidden;
|
|
height: 1px;
|
|
width: 1px;
|
|
word-wrap: normal;
|
|
}
|
|
|
|
@mixin hr-after {
|
|
::after {
|
|
content: '';
|
|
width: 100%;
|
|
margin-left: -20px;
|
|
margin-right: -20px;
|
|
border-bottom: 1px solid blue;
|
|
}
|
|
}
|
|
|
|
@mixin hr-before {
|
|
::after {
|
|
content: '';
|
|
width: 100%;
|
|
margin-left: -20px;
|
|
margin-right: -20px;
|
|
border-bottom: 1px solid blue;
|
|
}
|
|
}
|