You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
968 B
50 lines
968 B
3 years ago
|
@function frontend-font-url($filename) {
|
||
|
@return url("~assets/fonts/" + $filename);
|
||
|
}
|
||
|
|
||
|
@function frontend-image-url($filename) {
|
||
|
@return url("~assets/images/" + $filename);
|
||
|
}
|
||
|
|
||
|
$govuk-font-url-function: frontend-font-url;
|
||
|
$govuk-image-url-function: frontend-image-url;
|
||
3 years ago
|
$govuk-global-styles: true;
|
||
3 years ago
|
|
||
|
@import "~govuk-frontend/govuk/all";
|
||
3 years ago
|
|
||
3 years ago
|
@import "accessible-autocomplete";
|
||
3 years ago
|
@import "button";
|
||
3 years ago
|
@import "figure";
|
||
3 years ago
|
@import "input";
|
||
3 years ago
|
@import "related-navigation";
|
||
3 years ago
|
@import "section-skip-link";
|
||
3 years ago
|
@import "tab-navigation";
|
||
3 years ago
|
@import "table-group";
|
||
3 years ago
|
@import "task-list";
|
||
|
@import "template";
|
||
3 years ago
|
@import "panel";
|
||
3 years ago
|
|
||
3 years ago
|
// Turbo
|
||
|
.turbo-progress-bar {
|
||
|
height: govuk-spacing(1);
|
||
|
background-color: $govuk-brand-colour;
|
||
|
}
|
||
|
|
||
3 years ago
|
// App utilities
|
||
3 years ago
|
.app-\!-colour-muted {
|
||
|
color: $govuk-secondary-text-colour !important;
|
||
|
}
|
||
3 years ago
|
|
||
|
.app-\!-font-tabular {
|
||
|
@include govuk-font($size: false, $tabular: true);
|
||
|
}
|
||
|
|
||
|
// Overrides
|
||
|
.govuk-button-group {
|
||
|
align-items: center;
|
||
|
}
|
||
|
|
||
|
.govuk-tag {
|
||
|
white-space: nowrap;
|
||
|
}
|