Files
nairobi/app/assets/stylesheets/budgets/subheader.scss
Javi Martín f00cb631bc Remove all grid-row Sass rules
We were using these rules in order to set the maximum width of an
element to `$global-width`. However, since we now do so in the <body>
element, there's no need to apply these rules to "rows".

Note we're adding `overflow: hidden` to the budget subheader. That's
because it only contains `float` element inside, and we're now missing
the `.row::before` and `.row::after` rules which make sure float
elements are rendered properly.
2021-07-07 22:32:08 +02:00

18 lines
247 B
SCSS

.budget-subheader {
margin-bottom: $line-height;
margin-top: $line-height;
overflow: hidden;
.current-phase {
text-transform: uppercase;
}
.button {
margin-top: $line-height / 2;
}
.callout {
margin-bottom: 0;
}
}