20 lines
257 B
SCSS
20 lines
257 B
SCSS
|
.Widget {
|
||
|
background: #00ABA9;
|
||
|
height: 100%;
|
||
|
padding: 1rem;
|
||
|
position: relative;
|
||
|
width: 100%;
|
||
|
|
||
|
.widget-content {
|
||
|
* {
|
||
|
&:first-child {
|
||
|
margin-top: 0px;
|
||
|
}
|
||
|
|
||
|
&:last-child {
|
||
|
margin-bottom: 0px;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|