18 lines
292 B
SCSS
18 lines
292 B
SCSS
@use '../../styles/app' as *;
|
|
|
|
.widget {
|
|
display: block;
|
|
position: relative;
|
|
margin-bottom: 30px;
|
|
padding: $widget-padding-y $widget-padding-x;
|
|
background: $widget-bg;
|
|
}
|
|
|
|
.title {
|
|
margin-top: 0;
|
|
margin-bottom: 1.5rem / 2;
|
|
color: $widget-title-color;
|
|
|
|
@include clearfix();
|
|
}
|