Files
grecia/app/assets/stylesheets/admin/budgets/form.scss
Javi Martín fa7e2fe3dd Use same structure on new and edit budget forms
The margin between the heading and the form was different due to margin
collapsing, which applied in one case but not the other.
2021-03-11 19:37:58 +01:00

25 lines
424 B
SCSS

.admin .budgets-form {
> fieldset {
border-top: 4px solid $admin-border-color;
clear: both;
margin-top: $line-height * 1.5;
&:first-of-type {
margin-top: 0;
}
legend {
color: $admin-text;
font-size: $small-font-size;
font-weight: bold;
padding-right: $line-height / 2;
text-transform: uppercase;
}
}
.globalize-languages {
max-width: none;
}
}