@g1cloud/page-builder-editor 1.0.0-alpha.78 → 1.0.0-alpha.79

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.
Files changed (46) hide show
  1. package/css/page-builder-editor.css +373 -0
  2. package/css/page-builder-viewer.css +195 -0
  3. package/dist/{PbPropertyEditorColor-CIbIVOH6.js → PbPropertyEditorColor-5SJkOBUx.js} +1 -1
  4. package/dist/{PbPropertyEditorCssLength-B-4sVDmD.js → PbPropertyEditorCssLength-CNHbyz8V.js} +1 -1
  5. package/dist/{PbPropertyEditorHtml-D-P-rK2d.js → PbPropertyEditorHtml-DdQPQqJb.js} +1 -1
  6. package/dist/{PbPropertyEditorImage-Djqz82Tj.js → PbPropertyEditorImage-D0kxh68g.js} +1 -1
  7. package/dist/{PbPropertyEditorMultilineText-DFfXK9Mh.js → PbPropertyEditorMultilineText-BRLH4Ayi.js} +1 -1
  8. package/dist/{PbPropertyEditorText-Bl87u7Hn.js → PbPropertyEditorText-DDtYWGlr.js} +1 -1
  9. package/dist/{PbPropertyEditorYoutube-vn68-hix.js → PbPropertyEditorYoutube-BxrZ1nyk.js} +1 -1
  10. package/dist/{PbWidgetAddModal-jAxxY2xD.js → PbWidgetAddModal-uVBBeNVl.js} +1 -1
  11. package/dist/{index-BhMJnNHk.js → index-BVTz0PeS.js} +14 -12
  12. package/dist/page-builder-editor.js +1 -1
  13. package/dist/page-builder-editor.umd.cjs +5 -3
  14. package/dist/style.css +369 -2
  15. package/package.json +8 -7
  16. package/scss/page-builder-editor.scss +320 -0
  17. package/scss/page-builder-viewer.scss +1 -0
  18. package/{css → scss}/page-widget.scss +1 -1
  19. package/{css → scss}/page.scss +0 -1
  20. package/{css → scss}/property-editor-image.scss +4 -3
  21. package/{css → scss}/property-group-editor-background.scss +3 -2
  22. package/{css → scss}/property-group-editor-media.scss +4 -3
  23. package/css/page-builder-editor.scss +0 -315
  24. package/css/page-builder-viewer.scss +0 -1
  25. package/css/variable.scss +0 -5
  26. package/dist/css/page-builder-editor.css +0 -388
  27. package/dist/css/page-builder-viewer.css +0 -1
  28. /package/{css → scss}/canvas.scss +0 -0
  29. /package/{css → scss}/page-block.scss +0 -0
  30. /package/{css → scss}/page-page.scss +0 -0
  31. /package/{css → scss}/page-section.scss +0 -0
  32. /package/{css → scss}/property-editor-color.scss +0 -0
  33. /package/{css → scss}/property-editor-html.scss +0 -0
  34. /package/{css → scss}/property-editor-multiline-text.scss +0 -0
  35. /package/{css → scss}/property-editor-number.scss +0 -0
  36. /package/{css → scss}/property-editor-product.scss +0 -0
  37. /package/{css → scss}/property-editor-readonly-text.scss +0 -0
  38. /package/{css → scss}/property-editor-select.scss +0 -0
  39. /package/{css → scss}/property-editor-text.scss +0 -0
  40. /package/{css → scss}/property-editor-youtube.scss +0 -0
  41. /package/{css → scss}/property-group-editor-border.scss +0 -0
  42. /package/{css → scss}/property-group-editor-margin.scss +0 -0
  43. /package/{css → scss}/property-group-editor-padding.scss +0 -0
  44. /package/{css → scss}/property-group-editor-position.scss +0 -0
  45. /package/{css → scss}/property-group-editor-size.scss +0 -0
  46. /package/{css → scss}/property-localpart.scss +0 -0
@@ -1,315 +0,0 @@
1
- @use "variable" as *;
2
- @use "canvas" as *;
3
- @use "../dist/style.css";
4
-
5
-
6
- .bs-clickable {
7
- user-select: none;
8
- cursor: pointer;
9
-
10
- &:hover {
11
- filter: opacity(75%);
12
- }
13
-
14
- &:active {
15
- filter: opacity(50%);
16
- }
17
-
18
- &.disabled {
19
- filter: opacity(40%)
20
- }
21
- }
22
-
23
- .pb-menu {
24
- width: 100%;
25
-
26
- .pb-toolbar {
27
- margin: 0 -8px;
28
-
29
- .pb-tool-button-group {
30
- &::after {
31
- content: '';
32
- margin: 0 8px;
33
- height: 80%;
34
- border-right: 1px solid var(--border-light);
35
- align-self: center;
36
- }
37
-
38
- .pb-tool-button {
39
- padding: 2px;
40
- margin: 0 2px;
41
-
42
- .tool-button {
43
- width: 28px;
44
- height: 28px;
45
- display: flex;
46
- align-items: center;
47
- justify-content: center;
48
- }
49
- }
50
- }
51
- }
52
- }
53
-
54
- .editor-wrapper {
55
- height: 100%;
56
- }
57
-
58
- .pb-editor {
59
- height: 100%;
60
- }
61
-
62
- .pb-editor-body {
63
- padding: 8px 0 0;
64
- gap: 8px;
65
- height: 1px;
66
-
67
- .bs-tab-sheet {
68
- .tab-bar {
69
- .tabs {
70
- padding-top: 0;
71
- }
72
- }
73
- }
74
- }
75
-
76
- .pb-navigator {
77
- width: 200px;
78
- height: 1px;
79
- overflow-y: auto;
80
- padding: 8px 0;
81
- flex-grow: 1;
82
-
83
- &:focus {
84
- outline: none;
85
- }
86
- }
87
-
88
- .pb-sidebar {
89
- width: 300px;
90
- overflow: auto;
91
- border: 1px solid var(--border-light);
92
-
93
- .pb-sidebar-properties {
94
- padding: 0;
95
-
96
- .pb-sidebar-property-group {
97
- &:not(:empty) {
98
- padding: 16px 16px;
99
- border-bottom: 1px solid #eaeaea;
100
-
101
- }
102
-
103
- .group-title {
104
- > label {
105
- padding: 4px 0;
106
- font-size: 90%;
107
- font-weight: 600;
108
- }
109
- }
110
-
111
- .group-editor {
112
- padding: 4px 0;
113
- font-size: 0.9em;
114
-
115
- .title {
116
- padding: 0 0 8px 0;
117
-
118
- label {
119
- min-width: 6em;
120
- max-width: 6em;
121
- padding-right: 0.5em;
122
- font-weight: bold;
123
- }
124
- }
125
-
126
- .sub-title {
127
- label {
128
- min-width: 6em;
129
- max-width: 6em;
130
- padding-right: 0.5em;
131
- font-weight: 400;
132
- }
133
- }
134
- }
135
-
136
- .property-editor {
137
- padding: 4px 0;
138
- font-size: 0.9em;
139
-
140
- > .title {
141
- padding: 0 0 8px 0;
142
-
143
- > label {
144
- min-width: 6em;
145
- max-width: 6em;
146
- padding-right: 0.5em;
147
- font-weight: 600;
148
- }
149
- }
150
- }
151
-
152
- .property-editor:nth-child(n+2) {
153
- margin-top: 4px
154
- }
155
-
156
- @import "./property-editor-color";
157
- @import "./property-editor-image";
158
- @import "./property-editor-multiline-text";
159
- @import "./property-editor-product";
160
- @import "./property-editor-readonly-text";
161
- @import "./property-editor-select";
162
- @import "./property-editor-text";
163
- @import "./property-editor-number";
164
- @import "./property-editor-html";
165
-
166
- @import "./property-group-editor-background";
167
- @import "./property-group-editor-border";
168
- @import "./property-group-editor-position";
169
- @import "./property-group-editor-size";
170
- @import "./property-group-editor-media";
171
-
172
- @import "./property-localpart";
173
- }
174
- }
175
- }
176
-
177
- .pb-color-picker {
178
- display: inline-flex;
179
- position: relative;
180
-
181
- .buttons {
182
- display: flex;
183
- padding: 0;
184
-
185
- button {
186
- width: 24px;
187
- height: 24px;
188
- display: flex;
189
- justify-content: center;
190
- align-items: center;
191
-
192
- &.none {
193
- position: relative;
194
- overflow: hidden;
195
-
196
- &::after {
197
- content: "\00A0";
198
- display: inline-block;
199
- width: 100px;
200
- height: 1px;
201
- background: red;
202
- position: absolute;
203
- top: 50%;
204
- left: 50%;
205
- transform: translate(-50%, -50%) rotate(45deg);
206
- }
207
- }
208
-
209
- &.picker-button {
210
- border: 1px solid #cccccc;
211
- }
212
-
213
- i {
214
- font-size: 1.4rem;
215
- }
216
- }
217
- }
218
-
219
- .sketch-wrap {
220
- width: 220px;
221
- position: absolute;
222
- z-index: 10;
223
- left: -12px;
224
- top: 24px;
225
- white-space: break-spaces;
226
- text-align: left;
227
- }
228
- }
229
-
230
- .pb-part-add-modal {
231
- .section-title {
232
- font-weight: 700;
233
- }
234
-
235
- .group {
236
-
237
- .part {
238
- @extend .bs-clickable;
239
- border: 1px solid var(--border-light);
240
- border-radius: 4px;
241
- padding: 8px 16px;
242
- }
243
- }
244
- }
245
-
246
- .pb-html-editor-modal {
247
- .preview {
248
- width: 50%;
249
-
250
- .content {
251
- border: solid 1px #ccc;
252
-
253
- iframe {
254
- width: 100%;
255
- height: 100%;
256
- }
257
- }
258
- }
259
-
260
- .editor {
261
- width: 50%;
262
-
263
- .bs-tab-sheet > :nth-child(2) {
264
- height: 0;
265
- }
266
-
267
- .tags {
268
- height: 60%;
269
-
270
- .content {
271
- }
272
- }
273
-
274
- .style {
275
- height: 40%;
276
-
277
- .content {
278
- }
279
- }
280
-
281
- .bs-code-editor {
282
- height: 100%;
283
- }
284
- }
285
-
286
- .buttons {
287
- text-align: center;
288
-
289
- button {
290
- color: #fff;
291
- border: none;
292
- padding: 4px 12px;
293
- cursor: pointer;
294
- line-height: 1;
295
- height: 28px;
296
- background-color: #1f8fff;
297
- }
298
- }
299
- }
300
-
301
- .pb-youtube-modal {
302
- .flex-grow-1.overflow-auto {
303
- overflow: hidden !important;
304
- }
305
-
306
- button {
307
- color: #fff;
308
- border: none;
309
- padding: 4px 12px;
310
- cursor: pointer;
311
- line-height: 1;
312
- height: 28px;
313
- background-color: #1f8fff;
314
- }
315
- }
@@ -1 +0,0 @@
1
- @import '@g1cloud/page-builder-viewer/dist/css/page-builder-viewer.css';
package/css/variable.scss DELETED
@@ -1,5 +0,0 @@
1
- $color-canvas-frame-bg: #aaa;
2
-
3
- :root {
4
- --color-canvas-frame-bg: #{$color-canvas-frame-bg};
5
- }
@@ -1,388 +0,0 @@
1
- @charset "UTF-8";
2
- :root {
3
- --color-canvas-frame-bg: #aaa;
4
- }
5
-
6
- .pb-canvas-wrapper {
7
- background-color: var(--color-canvas-frame-bg);
8
- flex-grow: 1;
9
- min-width: 0;
10
- width: 0;
11
- height: 100%;
12
- padding: 20px;
13
- outline: none;
14
- overflow: auto;
15
- }
16
-
17
- .pb-canvas {
18
- display: flex;
19
- flex-direction: row;
20
- transform-origin: top left;
21
- width: fit-content;
22
- height: 100%;
23
- margin: 0;
24
- }
25
-
26
- .pb-page-frame iframe.page-frame {
27
- border: 0;
28
- }
29
-
30
- :root {
31
- --color-canvas-frame-bg: #aaa;
32
- }
33
-
34
- .pb-editor .pb-editor-body .tab-bar {
35
- padding: 0;
36
- }
37
-
38
- .bs-clickable, .pb-part-add-modal .group .part {
39
- user-select: none;
40
- cursor: pointer;
41
- }
42
- .bs-clickable:hover, .pb-part-add-modal .group .part:hover {
43
- filter: opacity(75%);
44
- }
45
- .bs-clickable:active, .pb-part-add-modal .group .part:active {
46
- filter: opacity(50%);
47
- }
48
- .bs-clickable.disabled, .pb-part-add-modal .group .disabled.part {
49
- filter: opacity(40%);
50
- }
51
-
52
- .pb-menu {
53
- width: 100%;
54
- }
55
- .pb-menu .pb-toolbar {
56
- margin: 0 -8px;
57
- }
58
- .pb-menu .pb-toolbar .pb-tool-button-group::after {
59
- content: "";
60
- margin: 0 8px;
61
- height: 80%;
62
- border-right: 1px solid var(--border-light);
63
- align-self: center;
64
- }
65
- .pb-menu .pb-toolbar .pb-tool-button-group .pb-tool-button {
66
- padding: 2px;
67
- margin: 0 2px;
68
- }
69
- .pb-menu .pb-toolbar .pb-tool-button-group .pb-tool-button .tool-button {
70
- width: 28px;
71
- height: 28px;
72
- display: flex;
73
- align-items: center;
74
- justify-content: center;
75
- }
76
-
77
- .editor-wrapper {
78
- height: 100%;
79
- }
80
-
81
- .pb-editor {
82
- height: 100%;
83
- }
84
-
85
- .pb-editor-body {
86
- padding: 8px 0 0;
87
- gap: 8px;
88
- height: 1px;
89
- }
90
- .pb-editor-body .bs-tab-sheet .tab-bar .tabs {
91
- padding-top: 0;
92
- }
93
-
94
- .pb-navigator {
95
- width: 200px;
96
- height: 1px;
97
- overflow-y: auto;
98
- padding: 8px 0;
99
- flex-grow: 1;
100
- }
101
- .pb-navigator:focus {
102
- outline: none;
103
- }
104
-
105
- .pb-sidebar {
106
- width: 300px;
107
- overflow: auto;
108
- border: 1px solid var(--border-light);
109
- }
110
- .pb-sidebar .pb-sidebar-properties {
111
- padding: 0;
112
- }
113
- .pb-sidebar .pb-sidebar-properties .pb-sidebar-property-group:not(:empty) {
114
- padding: 16px 16px;
115
- border-bottom: 1px solid #eaeaea;
116
- }
117
- .pb-sidebar .pb-sidebar-properties .pb-sidebar-property-group .group-title > label {
118
- padding: 4px 0;
119
- font-size: 90%;
120
- font-weight: 600;
121
- }
122
- .pb-sidebar .pb-sidebar-properties .pb-sidebar-property-group .group-editor {
123
- padding: 4px 0;
124
- font-size: 0.9em;
125
- }
126
- .pb-sidebar .pb-sidebar-properties .pb-sidebar-property-group .group-editor .title {
127
- padding: 0 0 8px 0;
128
- }
129
- .pb-sidebar .pb-sidebar-properties .pb-sidebar-property-group .group-editor .title label {
130
- min-width: 6em;
131
- max-width: 6em;
132
- padding-right: 0.5em;
133
- font-weight: bold;
134
- }
135
- .pb-sidebar .pb-sidebar-properties .pb-sidebar-property-group .group-editor .sub-title label {
136
- min-width: 6em;
137
- max-width: 6em;
138
- padding-right: 0.5em;
139
- font-weight: 400;
140
- }
141
- .pb-sidebar .pb-sidebar-properties .pb-sidebar-property-group .property-editor {
142
- padding: 4px 0;
143
- font-size: 0.9em;
144
- }
145
- .pb-sidebar .pb-sidebar-properties .pb-sidebar-property-group .property-editor > .title {
146
- padding: 0 0 8px 0;
147
- }
148
- .pb-sidebar .pb-sidebar-properties .pb-sidebar-property-group .property-editor > .title > label {
149
- min-width: 6em;
150
- max-width: 6em;
151
- padding-right: 0.5em;
152
- font-weight: 600;
153
- }
154
- .pb-sidebar .pb-sidebar-properties .pb-sidebar-property-group .property-editor:nth-child(n+2) {
155
- margin-top: 4px;
156
- }
157
- .pb-sidebar .pb-sidebar-properties .pb-sidebar-property-group .property-editor-color .color {
158
- width: 50%;
159
- }
160
- .pb-sidebar .pb-sidebar-properties .pb-sidebar-property-group .property-editor-image button.select-button {
161
- color: #fff;
162
- border: none;
163
- padding: 4px 12px;
164
- cursor: pointer;
165
- line-height: 1;
166
- width: 120px;
167
- height: 28px;
168
- background-color: #1f8fff;
169
- }
170
- .pb-sidebar .pb-sidebar-properties .pb-sidebar-property-group .property-editor-image .input-area {
171
- height: 24px;
172
- }
173
- .pb-sidebar .pb-sidebar-properties .pb-sidebar-property-group .property-editor-product button {
174
- color: #fff;
175
- border: none;
176
- padding: 4px 12px;
177
- cursor: pointer;
178
- line-height: 1;
179
- width: 200px;
180
- height: 28px;
181
- background-color: #1f8fff;
182
- }
183
- .pb-sidebar .pb-sidebar-properties .pb-sidebar-property-group .property-editor-product .input-area {
184
- height: 24px;
185
- }
186
- .pb-sidebar .pb-sidebar-properties .pb-sidebar-property-group .property-editor-select .bs-select {
187
- display: block;
188
- }
189
- .pb-sidebar .pb-sidebar-properties .pb-sidebar-property-group .property-editor-select .input-area {
190
- height: 24px;
191
- }
192
- .pb-sidebar .pb-sidebar-properties .pb-sidebar-property-group .property-editor-text .bs-text-input {
193
- display: block;
194
- }
195
- .pb-sidebar .pb-sidebar-properties .pb-sidebar-property-group .property-editor-text .input-area {
196
- height: 24px;
197
- }
198
- .pb-sidebar .pb-sidebar-properties .pb-sidebar-property-group .property-editor-text .bs-text-input {
199
- display: block;
200
- }
201
- .pb-sidebar .pb-sidebar-properties .pb-sidebar-property-group .property-editor-text .input-area {
202
- height: 24px;
203
- }
204
- .pb-sidebar .pb-sidebar-properties .pb-sidebar-property-group .property-editor-html button {
205
- color: #fff;
206
- border: none;
207
- padding: 4px 12px;
208
- cursor: pointer;
209
- line-height: 1;
210
- width: 100px;
211
- height: 28px;
212
- background-color: #1f8fff;
213
- }
214
- .pb-sidebar .pb-sidebar-properties .pb-sidebar-property-group .property-editor-html .input-area {
215
- height: 24px;
216
- }
217
- .pb-sidebar .pb-sidebar-properties .pb-sidebar-property-group .group-editor-background .color {
218
- flex: 1;
219
- display: flex;
220
- flex-direction: row;
221
- align-items: center;
222
- }
223
- .pb-sidebar .pb-sidebar-properties .pb-sidebar-property-group .group-editor-background .color .bs-text-input {
224
- flex-grow: 1;
225
- }
226
- .pb-sidebar .pb-sidebar-properties .pb-sidebar-property-group .group-editor-background .image {
227
- flex: 1;
228
- padding-left: 8px;
229
- }
230
- .pb-sidebar .pb-sidebar-properties .pb-sidebar-property-group .group-editor-background .image button {
231
- color: #fff;
232
- border: none;
233
- padding: 4px 12px;
234
- cursor: pointer;
235
- line-height: 1;
236
- width: 120px;
237
- height: 28px;
238
- background-color: #1f8fff;
239
- }
240
- .pb-sidebar .pb-sidebar-properties .pb-sidebar-property-group .group-editor-border .color {
241
- width: 50%;
242
- flex: 1;
243
- display: flex;
244
- flex-direction: row;
245
- align-items: center;
246
- }
247
- .pb-sidebar .pb-sidebar-properties .pb-sidebar-property-group .group-editor-border .color .bs-text-input {
248
- flex-grow: 1;
249
- }
250
- .pb-sidebar .pb-sidebar-properties .pb-sidebar-property-group .group-editor-border .corner-icon {
251
- width: 1.1em;
252
- height: 1.1em;
253
- fill: #000;
254
- }
255
- .pb-sidebar .pb-sidebar-properties .pb-sidebar-property-group .group-editor-media button.select-button {
256
- color: #fff;
257
- border: none;
258
- padding: 4px 12px;
259
- cursor: pointer;
260
- line-height: 1;
261
- width: 120px;
262
- height: 28px;
263
- background-color: #1f8fff;
264
- }
265
- .pb-sidebar .pb-sidebar-properties .pb-sidebar-property-group .group-editor-media .input-area {
266
- height: 24px;
267
- }
268
- .pb-sidebar .pb-sidebar-properties .pb-sidebar-property-group .property-editor-local-part .title {
269
- font-weight: 600;
270
- }
271
- .pb-sidebar .pb-sidebar-properties .pb-sidebar-property-group .property-editor-local-part button {
272
- color: #fff;
273
- border: none;
274
- padding: 0 4px;
275
- cursor: pointer;
276
- line-height: 1;
277
- height: 24px;
278
- background-color: #1f8fff;
279
- }
280
- .pb-sidebar .pb-sidebar-properties .pb-sidebar-property-group .property-editor-local-part .input-area {
281
- height: 24px;
282
- }
283
-
284
- .pb-color-picker {
285
- display: inline-flex;
286
- position: relative;
287
- }
288
- .pb-color-picker .buttons {
289
- display: flex;
290
- padding: 0;
291
- }
292
- .pb-color-picker .buttons button {
293
- width: 24px;
294
- height: 24px;
295
- display: flex;
296
- justify-content: center;
297
- align-items: center;
298
- }
299
- .pb-color-picker .buttons button.none {
300
- position: relative;
301
- overflow: hidden;
302
- }
303
- .pb-color-picker .buttons button.none::after {
304
- content: " ";
305
- display: inline-block;
306
- width: 100px;
307
- height: 1px;
308
- background: red;
309
- position: absolute;
310
- top: 50%;
311
- left: 50%;
312
- transform: translate(-50%, -50%) rotate(45deg);
313
- }
314
- .pb-color-picker .buttons button.picker-button {
315
- border: 1px solid #cccccc;
316
- }
317
- .pb-color-picker .buttons button i {
318
- font-size: 1.4rem;
319
- }
320
- .pb-color-picker .sketch-wrap {
321
- width: 220px;
322
- position: absolute;
323
- z-index: 10;
324
- left: -12px;
325
- top: 24px;
326
- white-space: break-spaces;
327
- text-align: left;
328
- }
329
-
330
- .pb-part-add-modal .section-title {
331
- font-weight: 700;
332
- }
333
- .pb-part-add-modal .group .part {
334
- border: 1px solid var(--border-light);
335
- border-radius: 4px;
336
- padding: 8px 16px;
337
- }
338
-
339
- .pb-html-editor-modal .preview {
340
- width: 50%;
341
- }
342
- .pb-html-editor-modal .preview .content {
343
- border: solid 1px #ccc;
344
- }
345
- .pb-html-editor-modal .preview .content iframe {
346
- width: 100%;
347
- height: 100%;
348
- }
349
- .pb-html-editor-modal .editor {
350
- width: 50%;
351
- }
352
- .pb-html-editor-modal .editor .bs-tab-sheet > :nth-child(2) {
353
- height: 0;
354
- }
355
- .pb-html-editor-modal .editor .tags {
356
- height: 60%;
357
- }
358
- .pb-html-editor-modal .editor .style {
359
- height: 40%;
360
- }
361
- .pb-html-editor-modal .editor .bs-code-editor {
362
- height: 100%;
363
- }
364
- .pb-html-editor-modal .buttons {
365
- text-align: center;
366
- }
367
- .pb-html-editor-modal .buttons button {
368
- color: #fff;
369
- border: none;
370
- padding: 4px 12px;
371
- cursor: pointer;
372
- line-height: 1;
373
- height: 28px;
374
- background-color: #1f8fff;
375
- }
376
-
377
- .pb-youtube-modal .flex-grow-1.overflow-auto {
378
- overflow: hidden !important;
379
- }
380
- .pb-youtube-modal button {
381
- color: #fff;
382
- border: none;
383
- padding: 4px 12px;
384
- cursor: pointer;
385
- line-height: 1;
386
- height: 28px;
387
- background-color: #1f8fff;
388
- }
@@ -1 +0,0 @@
1
- @import '@g1cloud/page-builder-viewer/dist/css/page-builder-viewer.css';
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes