Files
grecia/app/assets/stylesheets/admin/budget_phases/form.scss
Javi Martín 59da7d0af4 Fix "Add image" button styles in budget phases
It was broken since we fixed issues with other image fields in commit
394a94cbf, because there we added a fieldset for the image fields, and
so they inherited the styles in budget phases fields (these styles were
added before it was possible to attach an image to a phase).
2021-09-12 13:47:15 +02:00

36 lines
462 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 {
@include direct-uploads;
}
.button {
&.upload-image {
margin-bottom: $line-height / 2;
}
}
}