Newer
Older
@import '../base/color';
@import '../base/breakpoint';
// FAQContainer
.faq-root {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
@media #{$large-phone} {
width: 100%;
}
.faq-header {
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
color: $text-bright;
}
}
}
.faq-card-link {
color: black;
}
.faq-card {
display: flex;
flex-direction: row;
margin: -0.75rem 0;
width: 100%;
@media #{$large-phone} {
width: 100%;
}
.faq-card-content {
display: flex;
flex-direction: row;
.faq-card-content-icon {
margin: 0.5rem 0;
}
.faq-card-content-title {
margin: 0 1rem;
align-self: center;
}
}
}
// FAQ
.faq-view-root {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 1rem 0;
margin-top: 1.5rem;
.faq-view-content {
.text-underline {
text-decoration: underline;
}
.spaceline {
height: 0.6rem;
display: block;
}