34 lines
567 B
SCSS
Raw Normal View History

fieldset{
margin-bottom: 32px;
padding: 32px;
2021-11-05 16:43:46 +01:00
box-sizing: border-box;
2021-11-05 16:43:46 +01:00
border: 1px solid $gray;
legend{
padding: 0 15px;
font-size: 16px;
font-weight: 700;
color: $blue;
text-transform: uppercase;
}
.setting_holder {
margin: 8px 0;
2021-11-22 01:19:04 +01:00
display: flex;
flex-direction: column;
&:first-of-type{
margin-top: 0;
}
&:last-of-type{
margin-bottom: 0;
}
.setting_item {
margin: 4px 0;
}
}
}