blob: 6549f9dc2c2ead6b0e37fd7c86c18d0d0381e3a7 (
plain) (
blame)
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
|
.Header {
z-index: 32; // TODO: Figure out z-index system
display: flex;
padding: $spacer-3;
font-size: $h5-size;
line-height: $lh-default;
// stylelint-disable-next-line primer/colors
color: $white-fade-70;
background-color: $bg-gray-dark;
align-items: center;
flex-wrap: nowrap;
}
.Header-item {
display: flex;
margin-right: $spacer-3;
align-self: stretch;
align-items: center;
flex-wrap: nowrap;
}
.Header-item--full {
flex: auto;
}
.Header-link {
font-weight: $font-weight-bold;
color: $text-white;
white-space: nowrap;
&:hover,
&:focus {
// stylelint-disable-next-line primer/colors
color: $white-fade-70;
text-decoration: none;
}
}
|