bfg-common 1.3.306 → 1.3.308
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/assets/scss/components/auth.scss +177 -0
- package/assets/scss/main.scss +10 -8
- package/package.json +1 -1
|
@@ -0,0 +1,177 @@
|
|
|
1
|
+
@import '../common/mixins';
|
|
2
|
+
|
|
3
|
+
.sign-in {
|
|
4
|
+
@include flex($dir: column);
|
|
5
|
+
height: calc(100vh - 44px);
|
|
6
|
+
background-color: #fafafa;
|
|
7
|
+
&__content {
|
|
8
|
+
display: grid;
|
|
9
|
+
grid-template-columns: 544px auto;
|
|
10
|
+
flex: 1;
|
|
11
|
+
padding: 44px 44px 44px 0;
|
|
12
|
+
@media (max-width: 1200px) {
|
|
13
|
+
grid-template-columns: 512px auto;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
@media (max-width: 920px) {
|
|
17
|
+
grid-template-columns: 400px auto;
|
|
18
|
+
}
|
|
19
|
+
@media (max-width: 640px) {
|
|
20
|
+
grid-template-columns: 1fr;
|
|
21
|
+
padding: 44px 0;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
&__left {
|
|
25
|
+
@include flex($just: space-between, $dir: column);
|
|
26
|
+
flex: 1;
|
|
27
|
+
padding: 0 72px;
|
|
28
|
+
@media (max-width: 1200px) {
|
|
29
|
+
padding: 0 64px;
|
|
30
|
+
}
|
|
31
|
+
@media (max-width: 920px) {
|
|
32
|
+
padding: 0 45px;
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
&__form {
|
|
36
|
+
&-wrapper {
|
|
37
|
+
@include flex($just: center);
|
|
38
|
+
flex: 1;
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
&__heading {
|
|
42
|
+
@include flex($just: space-between);
|
|
43
|
+
}
|
|
44
|
+
&__logo {
|
|
45
|
+
@include flex($align: center);
|
|
46
|
+
&-text {
|
|
47
|
+
color: #182531;
|
|
48
|
+
font-size: 22px;
|
|
49
|
+
font-weight: 500;
|
|
50
|
+
line-height: 26px;
|
|
51
|
+
margin-left: 12px;
|
|
52
|
+
sup {
|
|
53
|
+
color: #9da6ad;
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
img {
|
|
57
|
+
width: 40px;
|
|
58
|
+
height: 40px;
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
&__background {
|
|
63
|
+
width: 100%;
|
|
64
|
+
height: 100%;
|
|
65
|
+
display: flex;
|
|
66
|
+
align-items: center;
|
|
67
|
+
justify-content: center;
|
|
68
|
+
flex: 1;
|
|
69
|
+
background-image: url('/login_bg.webp');
|
|
70
|
+
background-size: cover;
|
|
71
|
+
background-position: center;
|
|
72
|
+
background-repeat: no-repeat;
|
|
73
|
+
border-radius: 25px;
|
|
74
|
+
@media (max-width: 640px) {
|
|
75
|
+
&-wrapper {
|
|
76
|
+
display: none;
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
&-inner {
|
|
81
|
+
position: relative;
|
|
82
|
+
width: 660px;
|
|
83
|
+
height: 545px;
|
|
84
|
+
background-image: url('/login_bg1.png');
|
|
85
|
+
background-size: contain;
|
|
86
|
+
background-position: center;
|
|
87
|
+
background-repeat: no-repeat;
|
|
88
|
+
@media (max-width: 1024px) {
|
|
89
|
+
background-image: url('/login_bg1024.png');
|
|
90
|
+
width: 420px;
|
|
91
|
+
height: 376px;
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
&-text {
|
|
96
|
+
width: 450px;
|
|
97
|
+
position: absolute;
|
|
98
|
+
top: 60px;
|
|
99
|
+
left: 85px;
|
|
100
|
+
&.text-sm {
|
|
101
|
+
top: 70px;
|
|
102
|
+
span {
|
|
103
|
+
font-size: 21px;
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
span {
|
|
108
|
+
font-size: 28px;
|
|
109
|
+
font-weight: 400;
|
|
110
|
+
color: #ffffff;
|
|
111
|
+
&.opacity {
|
|
112
|
+
opacity: 48%;
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
@media (max-width: 1024px) {
|
|
117
|
+
width: 270px;
|
|
118
|
+
left: 75px;
|
|
119
|
+
top: 30px;
|
|
120
|
+
&.text-sm {
|
|
121
|
+
top: 20px;
|
|
122
|
+
span {
|
|
123
|
+
font-size: 19px;
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
span {
|
|
127
|
+
font-size: 21px;
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
&__notification {
|
|
133
|
+
@media (max-width: 820px) {
|
|
134
|
+
display: none;
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
.form {
|
|
140
|
+
@include flex($just: center, $dir: column);
|
|
141
|
+
width: 100%;
|
|
142
|
+
&__title {
|
|
143
|
+
color: #000000;
|
|
144
|
+
font-size: 32px;
|
|
145
|
+
font-weight: 400;
|
|
146
|
+
line-height: 38px;
|
|
147
|
+
margin-bottom: 48px;
|
|
148
|
+
span {
|
|
149
|
+
font-size: 32px;
|
|
150
|
+
color: #008fd6;
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
&__alert {
|
|
154
|
+
margin-bottom: 48px;
|
|
155
|
+
}
|
|
156
|
+
&__input {
|
|
157
|
+
:deep(.ui-main-input),
|
|
158
|
+
:deep(.ui-main-input:not(:placeholder-shown) + .ui-input-label) {
|
|
159
|
+
background-color: #fafafa;
|
|
160
|
+
}
|
|
161
|
+
&.password {
|
|
162
|
+
margin-top: 16px;
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
&__checkbox {
|
|
166
|
+
margin-top: 18px;
|
|
167
|
+
}
|
|
168
|
+
&__button {
|
|
169
|
+
@include flex($just: center, $align: center);
|
|
170
|
+
margin-top: 72px;
|
|
171
|
+
height: 44px;
|
|
172
|
+
border-radius: 8px;
|
|
173
|
+
:deep(svg) {
|
|
174
|
+
margin-right: 8px;
|
|
175
|
+
}
|
|
176
|
+
}
|
|
177
|
+
}
|
package/assets/scss/main.scss
CHANGED
|
@@ -1,13 +1,15 @@
|
|
|
1
1
|
//@import "clarity/clr-ui.min.css";
|
|
2
|
-
@import
|
|
2
|
+
@import 'common/icons/icons';
|
|
3
3
|
|
|
4
|
-
@import
|
|
4
|
+
@import 'common/utilities';
|
|
5
5
|
|
|
6
|
-
@import
|
|
7
|
-
@import
|
|
8
|
-
@import
|
|
9
|
-
@import
|
|
10
|
-
@import
|
|
11
|
-
@import
|
|
6
|
+
@import 'common/variables';
|
|
7
|
+
@import 'common/theme';
|
|
8
|
+
@import 'common/normalize';
|
|
9
|
+
@import 'common/global';
|
|
10
|
+
@import 'common/mixins';
|
|
11
|
+
@import 'common/animations';
|
|
12
|
+
|
|
13
|
+
@import 'components/auth';
|
|
12
14
|
|
|
13
15
|
//@import "plugins/consoleVm.css";
|