12 lines
153 B
SCSS
12 lines
153 B
SCSS
|
// Inherit from the class
|
||
|
@import 'class';
|
||
|
|
||
|
.label {
|
||
|
@extend %label;
|
||
|
|
||
|
font-size: .6em;
|
||
|
padding: .4em .6em;
|
||
|
margin-left: 1em;
|
||
|
line-height: 1;
|
||
|
}
|