mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-11 10:28:41 -04:00
20 lines
523 B
SCSS
20 lines
523 B
SCSS
// Extends footer column styles to allow 4 columns
|
|
@include mq ($from: desktop) {
|
|
.govuk-footer__list--columns-4 {
|
|
// TODO: Move support for legacy properties to something like Post-CSS's auto-prefixer
|
|
-webkit-column-count: 4;
|
|
-moz-column-count: 4;
|
|
column-count: 4;
|
|
}
|
|
}
|
|
|
|
// Class to extend govuk-button to allow it to sit alongside other inline content
|
|
.govuk-button__inline {
|
|
vertical-align: top;
|
|
margin-bottom: 0;
|
|
|
|
@include govuk-media-query($from: tablet) {
|
|
vertical-align: baseline;
|
|
}
|
|
}
|