mirror of
https://github.com/ENSL/ensl.org.git
synced 2025-01-03 16:31:22 +00:00
32 lines
346 B
SCSS
32 lines
346 B
SCSS
|
/*
|
||
|
Global Helpers
|
||
|
*/
|
||
|
|
||
|
.actions-bottom {
|
||
|
@include span-columns(12);
|
||
|
margin-top: 20px;
|
||
|
}
|
||
|
|
||
|
fieldset {
|
||
|
border: 2px solid $light-gray;
|
||
|
|
||
|
> br:first-child,
|
||
|
> br:last-child {
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
legend {
|
||
|
padding: 0 10px;
|
||
|
|
||
|
&+br {
|
||
|
display: none;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
blockquote {
|
||
|
border: 0;
|
||
|
padding: 0;
|
||
|
margin: 0;
|
||
|
}
|
||
|
}
|