-
Notifications
You must be signed in to change notification settings - Fork 114
/
Copy pathmain.scss
101 lines (85 loc) · 1.79 KB
/
main.scss
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
@use 'sass:math';
@use '@cfpb/cfpb-design-system/src/abstracts' as *;
@import '../../../css/main';
@import './search';
@import './search-bar';
.u-readable-width {
// Magic number: matches max-width for content set in cf-layout
max-width: 41.875rem;
}
.u-break-word {
word-break: break-word;
}
.prepaid-agreements {
dt,
dd {
display: block;
margin-left: 0;
}
dt {
margin-bottom: math.div(math.div($grid-gutter-width, 6), $base-font-size-px) +
em;
@include heading-4($has-margin-bottom: false, $is-responsive: false);
}
dd + dt {
margin-top: math.div(math.div($grid-gutter-width, 2), $base-font-size-px) +
em;
}
}
.prepaid-agreements-search {
padding-top: 0 !important;
.o-multiselect__label {
word-break: break-word;
}
.filters {
&__applied {
padding: math.div(math.div($grid-gutter-width, 2), $base-font-size-px) +
em;
}
.o-multiselect .m-tag-group {
display: none;
}
}
@include respond-to-min($bp-lg-min) {
.content__sidebar {
width: 33% !important;
}
.content__main {
width: 67% !important;
}
}
.search__wrapper {
label.h2 {
display: block;
max-width: none;
margin-bottom: math.div(
math.div($grid-gutter-width, 1.5),
$base-font-size-px
) + em;
}
}
.search__results {
.content__sidebar {
.o-expandable:nth-child(4n) {
border-bottom: none;
}
}
.results__item {
h4 {
max-width: none;
}
}
}
.database-disclaimer {
padding: math.div($grid-gutter-width, $base-font-size-px) + em;
padding-bottom: 0;
}
}
.prepaid-agreements-detail {
dd {
margin-bottom: math.div(
math.div($grid-gutter-width, 1.5),
$base-font-size-px
) + em;
}
}