-
Notifications
You must be signed in to change notification settings - Fork 1k
Expand file tree
/
Copy path_styles.scss
More file actions
106 lines (89 loc) · 1.78 KB
/
Copy path_styles.scss
File metadata and controls
106 lines (89 loc) · 1.78 KB
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
102
103
104
105
106
.confirm-user-reg {
display: flex;
flex-direction: column;
align-items: center;
&__help-text {
@include help-text;
color: $ui-fleet-black-75; // Undo grey in help text
}
&__icon {
color: $ui-success;
font-size: 120px;
display: block;
text-align: center;
margin: 10px 0 35px;
}
&__submit {
bottom: 0;
top: auto;
position: absolute;
border-top-left-radius: 0;
border-top-right-radius: 0;
&:active {
top: auto;
}
}
&__table {
width: 100%;
border-collapse: separate;
border-spacing: 0 $gap-form; /* 0px horizontal, 16px vertical gap between rows */
caption {
font-size: $x-small;
font-weight: $bold;
margin-bottom: $pad-large;
text-align: left;
}
tr {
vertical-align: bottom;
}
th {
font-size: $x-small;
font-weight: $bold;
text-align: left;
padding-right: 20px;
}
td {
font-size: $x-small;
font-weight: $regular;
}
}
&__table-email {
max-width: 292px;
word-wrap: break-word;
}
&__table-url {
display: inline-block;
max-width: 292px;
word-wrap: break-word;
font-family: "SourceCodePro", $monospace;
vertical-align: bottom;
font-weight: $bold;
}
&__import {
user-select: none;
font-size: $x-small;
font-weight: $regular;
line-height: 1.71;
letter-spacing: 0.5px;
color: $core-fleet-black;
margin: 30px 0 0;
.fleet-checkbox {
display: block;
&__label {
padding: 0;
}
}
p {
margin: 0;
padding-left: $pad-xxlarge;
}
.fleet-checkbox__input {
position: absolute;
left: 0;
top: 0;
}
}
}
body.dark-mode .confirm-user-reg__table tbody tr {
background-color: transparent;
}