UNPKG

933 BCSSView Raw
1@import './Theme.css';
2
3.container {
4 font-weight: 400;
5}
6
7.actionRow {
8 margin-bottom: 15px;
9}
10
11.sectionHeader {
12 color: var(--deepSquidInk);
13 margin-bottom: 24px;
14 font-size: 18px;
15 font-weight: 500;
16}
17
18.sectionHeaderHint {
19 color: var(--grey);
20 font-size: 16px;
21 font-weight: 400;
22 margin-top: 4px;
23}
24
25.sectionBody {
26 margin-bottom: 30px;
27}
28
29.sectionHeaderContent {
30}
31
32.sectionFooter {
33 font-size: 14px;
34 color: var(--grey);
35 display: flex;
36 flex-direction: row-reverse;
37 align-items: flex-start;
38}
39
40.sectionFooterPrimaryContent {
41 margin-left: auto;
42}
43
44.sectionFooterSecondaryContent {
45 margin-right: auto;
46 align-self: center;
47}
48
49@media only screen and (max-width: 599px) {
50 .sectionFooter {
51 flex-wrap: wrap;
52 }
53
54 .sectionFooterPrimaryContent {
55 width: 100%;
56 margin-bottom: 32px;
57 }
58
59 .sectionFooterPrimaryContent > button {
60 width: 100%;
61 }
62
63 .sectionFooterSecondaryContent {
64 text-align: center;
65 flex: 0 0 100%;
66 }
67}