-
Notifications
You must be signed in to change notification settings - Fork 42
/
_patterns_contact-modal.scss
60 lines (49 loc) · 1.16 KB
/
_patterns_contact-modal.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
@mixin maas-p-contact-modal {
#contact-modal { // sass-lint:disable-line no-ids
&.p-modal {
align-items: start;
position: fixed;
z-index: 100;
input[type="checkbox"] + label {
margin-bottom: 0;
margin-top: 0;
}
.p-modal__dialog {
margin-bottom: 0;
@media (min-width: $breakpoint-large + 100px) {
max-width: $breakpoint-large;
min-width: $breakpoint-large;
}
}
.p-modal__header {
border-bottom: 1px solid $color-mid-light;
margin-bottom: $spv--large;
}
.p-modal__title {
margin-bottom: $spv--small;
}
&.thank-you {
.p-modal__title {
opacity: 0;
}
.p-modal__header {
border-bottom: 0;
}
}
@media only screen and (min-width: $breakpoint-large) {
.u-align {
padding-bottom: 70px;
}
.u-align--bottom {
bottom: 0;
margin-top: 1rem;
position: absolute;
}
.pagination__link--next,
.pagination__link--previous {
margin-bottom: 0;
}
}
}
}
}