-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathstyles.scss
117 lines (97 loc) · 1.69 KB
/
styles.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
@use '~@zero-tech/zui/styles/theme' as theme;
@import '../../glass';
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.edit-profile {
display: flex;
flex-direction: column;
margin-bottom: 16px;
flex-grow: 1;
max-width: 100%;
&__header-container {
display: flex;
padding: 16px;
}
&__content-wrapper {
display: flex;
flex-direction: column;
flex-grow: 1;
}
&__body {
display: flex;
flex-direction: column;
align-items: center;
gap: 32px;
margin: 16px;
}
&__body-input {
width: 100%;
gap: 4px;
line-height: normal;
}
&__select-input {
> *:last-child {
> div {
min-width: 236px;
}
}
}
&__image-upload {
animation: fadeIn 2s;
}
&__zid-select-menu {
max-height: 220px;
overflow-y: auto;
overflow-x: hidden;
width: 222px;
}
&__zid-menu-item-option {
display: flex;
flex-direction: row;
font-size: 16px;
line-height: 24px;
width: 100%;
@include glass-text-primary-color;
}
&__zid-menu-item-option-label {
flex-grow: 1;
}
&__zid-menu-item-option-icon {
flex-grow: 0;
}
&__zid-menu-item-option-loading-spinner {
width: 24px;
height: 22px;
}
&__primary-zid-lable {
display: flex;
align-items: center;
gap: 8px;
margin-bottom: 4px;
}
&__info-tooltip:hover {
cursor: pointer;
}
&__footer {
margin-top: 32px;
display: flex;
justify-content: center;
gap: 16px;
}
&__alert-small {
display: flex;
justify-content: center;
margin-top: 8px;
padding: 4px 8px 4px 8px;
}
&__alert-text {
font-size: 14px;
line-height: 20px;
}
}