l-min-components 1.0.1166 → 1.0.1167
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/package.json
CHANGED
|
@@ -83,6 +83,8 @@ const AppMainLayout = ({ children }) => {
|
|
|
83
83
|
|
|
84
84
|
useEffect(() => {
|
|
85
85
|
if (setDefaultAccount?.data) {
|
|
86
|
+
if (setDefaultAccount?.response?.status === 207)
|
|
87
|
+
window.location.href = "/auth/account-type";
|
|
86
88
|
setNewLoadingForPostDefaultAccount(false);
|
|
87
89
|
}
|
|
88
90
|
}, [setDefaultAccount?.data]);
|
|
@@ -0,0 +1,211 @@
|
|
|
1
|
+
.editor {
|
|
2
|
+
display: flex;
|
|
3
|
+
gap: 13px;
|
|
4
|
+
}
|
|
5
|
+
.editor .editor-wrapper {
|
|
6
|
+
width: 100%;
|
|
7
|
+
position: relative;
|
|
8
|
+
background: #e5e5e5;
|
|
9
|
+
border-radius: 15px;
|
|
10
|
+
}
|
|
11
|
+
.editor .editor-wrapper .emoji_picker {
|
|
12
|
+
position: absolute;
|
|
13
|
+
z-index: 1;
|
|
14
|
+
transform: translate(10px, 10px);
|
|
15
|
+
margin-left: 50%;
|
|
16
|
+
margin-top: -15%;
|
|
17
|
+
}
|
|
18
|
+
@media only screen and (max-width: 1700px) {
|
|
19
|
+
.editor .editor-wrapper .emoji_picker {
|
|
20
|
+
margin-top: -19%;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
@media only screen and (max-width: 1600px) {
|
|
24
|
+
.editor .editor-wrapper .emoji_picker {
|
|
25
|
+
margin-top: -21%;
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
@media only screen and (max-width: 1500px) {
|
|
29
|
+
.editor .editor-wrapper .emoji_picker {
|
|
30
|
+
margin-top: -24%;
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
.editor .editor-wrapper .editor_area {
|
|
34
|
+
background: #fff;
|
|
35
|
+
border-radius: 15px;
|
|
36
|
+
}
|
|
37
|
+
.editor .editor-wrapper .editor_area input {
|
|
38
|
+
border-radius: 12px;
|
|
39
|
+
background: #fff;
|
|
40
|
+
outline: none;
|
|
41
|
+
border: none;
|
|
42
|
+
width: 100%;
|
|
43
|
+
height: 30px;
|
|
44
|
+
font-size: 20px;
|
|
45
|
+
font-weight: 500;
|
|
46
|
+
padding-left: 30px;
|
|
47
|
+
border: "none";
|
|
48
|
+
margin-top: 20px;
|
|
49
|
+
}
|
|
50
|
+
.editor .editor-wrapper .editor_area .editable {
|
|
51
|
+
border-radius: 25px;
|
|
52
|
+
padding: 20px 30px;
|
|
53
|
+
background: #fff;
|
|
54
|
+
min-height: 193px;
|
|
55
|
+
}
|
|
56
|
+
.editor .editor-wrapper .bottom {
|
|
57
|
+
display: flex;
|
|
58
|
+
justify-content: center;
|
|
59
|
+
align-items: center;
|
|
60
|
+
width: 80%;
|
|
61
|
+
}
|
|
62
|
+
.editor .editor-wrapper .bottom .emoji_button {
|
|
63
|
+
background-color: white;
|
|
64
|
+
border: none;
|
|
65
|
+
cursor: pointer;
|
|
66
|
+
padding: 5px;
|
|
67
|
+
margin-top: 6px;
|
|
68
|
+
margin-right: 20px;
|
|
69
|
+
border-radius: 50%;
|
|
70
|
+
}
|
|
71
|
+
.editor .editor-wrapper .bottom .emoji_button_active {
|
|
72
|
+
background-color: #fff;
|
|
73
|
+
color: #00c2c2;
|
|
74
|
+
border: none;
|
|
75
|
+
cursor: pointer;
|
|
76
|
+
padding: 3px;
|
|
77
|
+
margin-top: 6px;
|
|
78
|
+
margin-right: 20px;
|
|
79
|
+
}
|
|
80
|
+
.editor .editor-wrapper .bottom .emoji_button_active svg path {
|
|
81
|
+
stroke: #00c2c2;
|
|
82
|
+
}
|
|
83
|
+
@media only screen and (max-width: 1400px) {
|
|
84
|
+
.editor .editor-wrapper .bottom > button {
|
|
85
|
+
font-size: 17px !important;
|
|
86
|
+
font-weight: 700;
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
@media only screen and (max-width: 1366px) {
|
|
90
|
+
.editor .editor-wrapper .bottom > button {
|
|
91
|
+
font-size: 15px !important;
|
|
92
|
+
font-weight: 600;
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
.editor .editor-wrapper .bottom .tool-bar {
|
|
96
|
+
display: flex;
|
|
97
|
+
margin: auto;
|
|
98
|
+
margin-top: 16px;
|
|
99
|
+
margin-right: 20px;
|
|
100
|
+
padding: 16px;
|
|
101
|
+
background: #fff;
|
|
102
|
+
border: 0px solid #dfe5e5;
|
|
103
|
+
border-radius: 12px;
|
|
104
|
+
width: 70%;
|
|
105
|
+
height: 60px;
|
|
106
|
+
align-items: center;
|
|
107
|
+
}
|
|
108
|
+
.editor .editor-wrapper .bottom .tool-bar .list {
|
|
109
|
+
display: grid;
|
|
110
|
+
gap: 2px;
|
|
111
|
+
}
|
|
112
|
+
.editor .editor-wrapper .bottom .tool-bar .list > div {
|
|
113
|
+
display: grid;
|
|
114
|
+
cursor: pointer;
|
|
115
|
+
}
|
|
116
|
+
.editor .editor-wrapper .bottom .tool-bar .list .active {
|
|
117
|
+
color: #00c2c2;
|
|
118
|
+
}
|
|
119
|
+
.editor .editor-wrapper .bottom .tool-bar .list .active svg path {
|
|
120
|
+
stroke: #00c2c2;
|
|
121
|
+
}
|
|
122
|
+
.editor .editor-wrapper .bottom .tool-bar .active {
|
|
123
|
+
opacity: 1;
|
|
124
|
+
}
|
|
125
|
+
.editor .editor-wrapper .bottom .tool-bar .font .font-dd div {
|
|
126
|
+
border-width: 0px;
|
|
127
|
+
min-width: 215px;
|
|
128
|
+
}
|
|
129
|
+
.editor .editor-wrapper .bottom .tool-bar .font .font-dd p {
|
|
130
|
+
margin-right: 25px;
|
|
131
|
+
font-weight: 700;
|
|
132
|
+
}
|
|
133
|
+
.editor .editor-wrapper .bottom .tool-bar .font-size .sizes div {
|
|
134
|
+
border-width: 0px;
|
|
135
|
+
}
|
|
136
|
+
.editor .editor-wrapper .bottom .tool-bar .font-size .sizes div .iVkqGn {
|
|
137
|
+
padding: 11px 10px;
|
|
138
|
+
}
|
|
139
|
+
.editor .editor-wrapper .bottom .tool-bar .font-size .sizes p {
|
|
140
|
+
margin-right: 25px;
|
|
141
|
+
font-weight: 700;
|
|
142
|
+
}
|
|
143
|
+
.editor .editor-wrapper .bottom .tool-bar > div {
|
|
144
|
+
border-right: 1px solid #f5f7f7;
|
|
145
|
+
padding: 0 6px;
|
|
146
|
+
}
|
|
147
|
+
.editor .editor-wrapper .bottom .tool-bar .font-style {
|
|
148
|
+
display: flex;
|
|
149
|
+
gap: 5px;
|
|
150
|
+
}
|
|
151
|
+
.editor .editor-wrapper .bottom .tool-bar .font-style > div {
|
|
152
|
+
display: grid;
|
|
153
|
+
cursor: pointer;
|
|
154
|
+
}
|
|
155
|
+
.editor .editor-wrapper .bottom .tool-bar .font-style .active {
|
|
156
|
+
color: #00c2c2;
|
|
157
|
+
}
|
|
158
|
+
.editor .editor-wrapper .bottom .tool-bar .font-style .active svg path {
|
|
159
|
+
stroke: #00c2c2;
|
|
160
|
+
}
|
|
161
|
+
.editor .editor-wrapper .bottom .tool-bar .color-box .wrap {
|
|
162
|
+
position: relative;
|
|
163
|
+
cursor: pointer;
|
|
164
|
+
display: flex;
|
|
165
|
+
align-items: center;
|
|
166
|
+
gap: 7px;
|
|
167
|
+
}
|
|
168
|
+
.editor .editor-wrapper .bottom .tool-bar .color-box .wrap input {
|
|
169
|
+
position: absolute;
|
|
170
|
+
pointer-events: none;
|
|
171
|
+
opacity: 0;
|
|
172
|
+
}
|
|
173
|
+
.editor .editor-wrapper .bottom .tool-bar .color-box .wrap .indicator {
|
|
174
|
+
width: 24px;
|
|
175
|
+
height: 24px;
|
|
176
|
+
border-radius: 50%;
|
|
177
|
+
}
|
|
178
|
+
.editor .editor-wrapper .bottom .tool-bar .alignments {
|
|
179
|
+
display: grid;
|
|
180
|
+
grid-template-columns: 1fr 1fr 1fr;
|
|
181
|
+
gap: 16px;
|
|
182
|
+
cursor: pointer;
|
|
183
|
+
}
|
|
184
|
+
.editor .editor-wrapper .bottom .tool-bar .alignments > div {
|
|
185
|
+
display: grid;
|
|
186
|
+
}
|
|
187
|
+
.editor .editor-wrapper .bottom .tool-bar .alignments .active {
|
|
188
|
+
color: #00c2c2;
|
|
189
|
+
}
|
|
190
|
+
.editor .editor-wrapper .bottom .tool-bar .alignments .active svg path {
|
|
191
|
+
stroke: #00c2c2;
|
|
192
|
+
}
|
|
193
|
+
.editor .editor-wrapper .options {
|
|
194
|
+
min-width: 40px;
|
|
195
|
+
display: grid;
|
|
196
|
+
align-content: start;
|
|
197
|
+
gap: 20px;
|
|
198
|
+
}
|
|
199
|
+
.editor .editor-wrapper .options span {
|
|
200
|
+
width: 40px;
|
|
201
|
+
height: 40px;
|
|
202
|
+
border-radius: 50%;
|
|
203
|
+
display: grid;
|
|
204
|
+
align-content: center;
|
|
205
|
+
justify-items: center;
|
|
206
|
+
background-color: #f95454;
|
|
207
|
+
cursor: pointer;
|
|
208
|
+
}
|
|
209
|
+
.editor .editor-wrapper .options span:nth-of-type(1) {
|
|
210
|
+
background-color: #febf10;
|
|
211
|
+
}/*# sourceMappingURL=style.css.map */
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["style.scss","style.css","variables/_colors.scss"],"names":[],"mappings":"AAKA;EACE,aAAA;EACA,SAAA;ACJF;ADME;EACE,WAAA;EACA,kBAAA;EACA,mBAAA;EACA,mBAAA;ACJJ;ADMI;EACE,kBAAA;EACA,UAAA;EACA,gCAAA;EACA,gBAAA;EACA,gBAAA;ACJN;ADMM;EAPF;IAQI,gBAAA;ECHN;AACF;ADIM;EAVF;IAWI,gBAAA;ECDN;AACF;ADEM;EAbF;IAcI,gBAAA;ECCN;AACF;ADEI;EACE,gBAAA;EACA,mBAAA;ACAN;ADEM;EACE,mBAAA;EACA,gBAAA;EACA,aAAA;EACA,YAAA;EACA,WAAA;EACA,YAAA;EACA,eAAA;EACA,gBAAA;EACA,kBAAA;EACA,cAAA;EACA,gBAAA;ACAR;ADEM;EACE,mBAAA;EACA,kBAAA;EACA,gBAAA;EAEA,iBAAA;ACDR;ADKI;EACE,aAAA;EACA,uBAAA;EACA,mBAAA;EACA,UAAA;ACHN;ADKM;EACE,uBAAA;EACA,YAAA;EACA,eAAA;EACA,YAAA;EACA,eAAA;EACA,kBAAA;EACA,kBAAA;ACHR;ADOM;EACE,sBAAA;EACA,cAAA;EACA,YAAA;EACA,eAAA;EACA,YAAA;EACA,eAAA;EACA,kBAAA;ACLR;ADOQ;EACE,eAAA;ACLV;ADWQ;EADF;IAEI,0BAAA;IACA,gBAAA;ECRR;AACF;ADSQ;EALF;IAMI,0BAAA;IACA,gBAAA;ECNR;AACF;ADSM;EACE,aAAA;EACA,YAAA;EACA,gBAAA;EACA,kBAAA;EACA,aAAA;EACA,gBAAA;EACA,yBAAA;EACA,mBAAA;EACA,UAAA;EACA,YAAA;EAGA,mBAAA;ACTR;ADUQ;EACE,aAAA;EAEA,QAAA;ACTV;ADUU;EACE,aAAA;EACA,eAAA;ACRZ;ADUU;EACE,cAAA;ACRZ;ADSY;EAEE,eAAA;ACRd;ADaQ;EACE,UAAA;ACXV;ADgBY;EACE,iBAAA;EACA,gBAAA;ACdd;ADgBY;EACE,kBAAA;EACA,gBAAA;ACdd;ADoBY;EACE,iBAAA;AClBd;ADoBc;EACE,kBAAA;AClBhB;ADqBY;EACE,kBAAA;EACA,gBAAA;ACnBd;ADuBQ;EACE,+BAAA;EACA,cAAA;ACrBV;ADuBQ;EACE,aAAA;EACA,QAAA;ACrBV;ADsBU;EACE,aAAA;EACA,eAAA;ACpBZ;AD0BU;EACE,cAAA;ACxBZ;ADyBY;EAEE,eAAA;ACxBd;AD6BU;EACE,kBAAA;EACA,eAAA;EACA,aAAA;EACA,mBAAA;EACA,QAAA;AC3BZ;AD4BY;EACE,kBAAA;EACA,oBAAA;EACA,UAAA;AC1Bd;AD4BY;EACE,WAAA;EACA,YAAA;EACA,kBAAA;AC1Bd;AD8BQ;EACE,aAAA;EACA,kCAAA;EACA,SAAA;EACA,eAAA;AC5BV;AD6BU;EACE,aAAA;AC3BZ;AD6BU;EACE,cAAA;AC3BZ;AD4BY;EAEE,eAAA;AC3Bd;ADiCI;EACE,eAAA;EACA,aAAA;EACA,oBAAA;EACA,SAAA;AC/BN;ADgCM;EACE,WAAA;EACA,YAAA;EACA,kBAAA;EACA,aAAA;EACA,qBAAA;EACA,qBAAA;EACA,yBEhOA;EFiOA,eAAA;AC9BR;AD+BQ;EACE,yBE1OW;AD6MrB","file":"style.css"}
|