Files
nairobi/app/assets/stylesheets/admin/budget_phases/form.scss
Javi Martín a8bd5eb192 Rename document/image fields HTML classes
Using the `document` or `documents` classes meant styles defined for the
public list of documents conflict with these ones.

So now we're using HTML classes that match the name of the Ruby
component classes, as we usually do.
2023-10-23 15:49:01 +02:00

36 lines
469 B
SCSS

.admin .budget-phases-form {
> fieldset {
margin-top: $line-height;
> * {
@include grid-column;
}
> .date-field {
@include breakpoint(medium) {
width: 50%;
}
@include breakpoint(large) {
width: 25%;
}
&:last-child {
float: left;
}
}
}
.images-nested {
@include direct-uploads;
}
.button {
&.upload-image {
margin-bottom: $line-height / 2;
}
}
}