You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
435 B
22 lines
435 B
4 years ago
|
@import "spectre/src/variables";
|
||
|
|
||
|
$icon-border-width: $border-width-lg;
|
||
|
|
||
|
.icon-home {
|
||
|
&::before {
|
||
|
border: $icon-border-width solid currentColor;
|
||
|
border-bottom: 0;
|
||
|
border-right: 0;
|
||
|
transform: translate(-50%, -40%) rotate(45deg);
|
||
|
width: .8em;
|
||
|
height: .8em;
|
||
|
}
|
||
|
|
||
|
&::after {
|
||
|
transform: translate(-50%, -50%);
|
||
|
border-bottom: $icon-border-width solid currentColor;
|
||
|
height: 1em;
|
||
|
width: .8em;
|
||
|
}
|
||
|
}
|