-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathprofile.module.scss
99 lines (82 loc) · 1.84 KB
/
profile.module.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
@use 'sass:map';
@use 'styles/config';
@use 'styles/common';
.wrapper {
@include common.wrapper;
margin: 48px auto;
.card {
border: 1px solid map.get(config.$colors, 'accents-2');
border-radius: 4px;
position: relative;
.divider {
@include common.divider;
}
.inputs {
max-width: 500px;
margin: 32px auto;
padding: 0 16px;
@media (max-width: 600px) {
margin: 0 auto;
padding: 16px;
}
.field {
@include common.field;
.label {
margin-right: 24px;
padding: 0;
p {
margin: 4px 0;
&:first-child {
margin-top: 0;
}
&:last-child {
margin-bottom: 0;
}
}
.header,
b {
font-weight: 600;
}
}
}
.btn {
margin: 8px 0 0;
width: 100%;
}
.error {
color: map.get(config.$colors, 'error');
font-weight: 450;
margin-top: 16px;
}
}
.footer {
display: flex;
min-height: 54px;
align-items: center;
background-color: map.get(config.$colors, 'accents-1');
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
border-top: 1px solid map.get(config.$colors, 'accents-2');
color: map.get(config.$colors, 'accents-6');
font-size: 0.875rem;
box-sizing: border-box;
line-height: 1.6;
.content {
max-width: 500px;
margin: 12px auto;
padding: 0 48px;
width: 100%;
a {
cursor: pointer;
color: map.get(config.$colors, 'primary');
text-decoration: none;
display: inline-flex;
align-items: center;
}
}
}
}
}
.snackbar {
@include common.snackbar;
}