21 lines
308 B
SCSS
21 lines
308 B
SCSS
@mixin news-font {
|
|
font-family: inherit;
|
|
}
|
|
|
|
.notifications {
|
|
@include news-font;
|
|
font-size: 0.9em;
|
|
padding-left: 20px;
|
|
padding-top: 20px;
|
|
padding-bottom: 20px;
|
|
.notification {
|
|
@include news-font;
|
|
margin-top: 15px;
|
|
margin-botton: 15px;
|
|
|
|
a {
|
|
@include news-font;
|
|
}
|
|
}
|
|
}
|