-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathshared.scss
More file actions
46 lines (40 loc) · 809 Bytes
/
shared.scss
File metadata and controls
46 lines (40 loc) · 809 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
@use "govuk-frontend" as *;
@use "pkg:accessible-autocomplete";
@use "prose";
@use "summary-list";
@use "location-fields";
// Use default GDS Transport font for autocomplete
.autocomplete__hint,
.autocomplete__input,
.autocomplete__option {
@include govuk-typography-common;
}
.app-hidden {
display: none;
visibility: hidden;
}
.js-enabled {
.js-hidden {
display: none;
visibility: hidden;
}
}
// Used in postcode lookup
.govuk-button--link {
@extend %govuk-link;
color: $govuk-link-colour;
border: none;
cursor: pointer;
background-color: transparent;
@include govuk-font($size: 19);
}
// Used in geospatial field
.govuk-link--disabled {
opacity: 0.5;
}
// Hide urls for hyperlinks when in print mode
@media print {
.govuk-link[href]::after {
content: none;
}
}