@get-set/gs-zoom 0.0.4 → 0.0.6

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 (171) hide show
  1. package/README.md +129 -1
  2. package/actions/general.ts +29 -0
  3. package/actions/getAdjustTransform.ts +46 -0
  4. package/actions/getCurrentParams.ts +42 -0
  5. package/actions/getTranslateCoordToPoint.ts +37 -0
  6. package/actions/init.ts +25 -0
  7. package/actions/initActionEvents.ts +102 -0
  8. package/actions/initAdditionals.ts +91 -0
  9. package/actions/initAdjust.ts +120 -0
  10. package/actions/initAdjustAdditionalActive.ts +31 -0
  11. package/actions/initArrows.ts +36 -0
  12. package/actions/initAutoplay.ts +91 -0
  13. package/actions/initChange.ts +139 -0
  14. package/actions/initClose.ts +29 -0
  15. package/actions/initDraggle.ts +258 -0
  16. package/actions/initDraw.ts +83 -0
  17. package/actions/initDrawItem.ts +77 -0
  18. package/actions/initFullScreen.ts +30 -0
  19. package/actions/initLightBox.ts +13 -0
  20. package/actions/initMagnifier.ts +53 -0
  21. package/actions/initNavigateWithKeys.ts +22 -0
  22. package/actions/initOpen.ts +29 -0
  23. package/actions/initWheel.ts +44 -0
  24. package/actions/setStyles.ts +28 -0
  25. package/components/GSZoom.tsx +178 -0
  26. package/{dist/components → components}/styles/GSZoom.scss +252 -254
  27. package/components/styles/GSZoomCSS.ts +237 -0
  28. package/constants/defaultParams.ts +20 -0
  29. package/constants/icons.ts +25 -0
  30. package/constants/magnifierDefaultProps.ts +9 -0
  31. package/constants/types.ts +6 -0
  32. package/dist/GSZoom.d.ts +2 -0
  33. package/dist/actions/general.d.ts +7 -0
  34. package/dist/actions/general.d.ts.map +1 -0
  35. package/dist/actions/general.js +26 -30
  36. package/dist/actions/general.js.map +1 -0
  37. package/dist/actions/getAdjustTransform.d.ts +3 -0
  38. package/dist/actions/getAdjustTransform.d.ts.map +1 -0
  39. package/dist/actions/getAdjustTransform.js +41 -43
  40. package/dist/actions/getAdjustTransform.js.map +1 -0
  41. package/dist/actions/getCurrentParams.d.ts +4 -0
  42. package/dist/actions/getCurrentParams.d.ts.map +1 -0
  43. package/dist/actions/getCurrentParams.js +35 -42
  44. package/dist/actions/getCurrentParams.js.map +1 -0
  45. package/dist/actions/getTranslateCoordToPoint.d.ts +3 -0
  46. package/dist/actions/getTranslateCoordToPoint.d.ts.map +1 -0
  47. package/dist/actions/getTranslateCoordToPoint.js +21 -41
  48. package/dist/actions/getTranslateCoordToPoint.js.map +1 -0
  49. package/dist/actions/init.d.ts +4 -0
  50. package/dist/actions/init.d.ts.map +1 -0
  51. package/dist/actions/init.js +21 -21
  52. package/dist/actions/init.js.map +1 -0
  53. package/dist/actions/initActionEvents.d.ts +4 -0
  54. package/dist/actions/initActionEvents.d.ts.map +1 -0
  55. package/dist/actions/initActionEvents.js +80 -127
  56. package/dist/actions/initActionEvents.js.map +1 -0
  57. package/dist/actions/initAdditionals.d.ts +4 -0
  58. package/dist/actions/initAdditionals.d.ts.map +1 -0
  59. package/dist/actions/initAdditionals.js +78 -117
  60. package/dist/actions/initAdditionals.js.map +1 -0
  61. package/dist/actions/initAdjust.d.ts +4 -0
  62. package/dist/actions/initAdjust.d.ts.map +1 -0
  63. package/dist/actions/initAdjust.js +96 -107
  64. package/dist/actions/initAdjust.js.map +1 -0
  65. package/dist/actions/initAdjustAdditionalActive.d.ts +4 -0
  66. package/dist/actions/initAdjustAdditionalActive.d.ts.map +1 -0
  67. package/dist/actions/initAdjustAdditionalActive.js +25 -33
  68. package/dist/actions/initAdjustAdditionalActive.js.map +1 -0
  69. package/dist/actions/initArrows.d.ts +4 -0
  70. package/dist/actions/initArrows.d.ts.map +1 -0
  71. package/dist/actions/initArrows.js +28 -44
  72. package/dist/actions/initArrows.js.map +1 -0
  73. package/dist/actions/initAutoplay.d.ts +6 -0
  74. package/dist/actions/initAutoplay.d.ts.map +1 -0
  75. package/dist/actions/initAutoplay.js +85 -81
  76. package/dist/actions/initAutoplay.js.map +1 -0
  77. package/dist/actions/initChange.d.ts +4 -0
  78. package/dist/actions/initChange.d.ts.map +1 -0
  79. package/dist/actions/initChange.js +116 -137
  80. package/dist/actions/initChange.js.map +1 -0
  81. package/dist/actions/initClose.d.ts +3 -0
  82. package/dist/actions/initClose.d.ts.map +1 -0
  83. package/dist/actions/initClose.js +24 -28
  84. package/dist/actions/initClose.js.map +1 -0
  85. package/dist/actions/initDraggle.d.ts +4 -0
  86. package/dist/actions/initDraggle.d.ts.map +1 -0
  87. package/dist/actions/initDraggle.js +227 -303
  88. package/dist/actions/initDraggle.js.map +1 -0
  89. package/dist/actions/initDraw.d.ts +4 -0
  90. package/dist/actions/initDraw.d.ts.map +1 -0
  91. package/dist/actions/initDraw.js +74 -90
  92. package/dist/actions/initDraw.js.map +1 -0
  93. package/dist/actions/initDrawItem.d.ts +4 -0
  94. package/dist/actions/initDrawItem.d.ts.map +1 -0
  95. package/dist/actions/initDrawItem.js +63 -79
  96. package/dist/actions/initDrawItem.js.map +1 -0
  97. package/dist/actions/initFullScreen.d.ts +4 -0
  98. package/dist/actions/initFullScreen.d.ts.map +1 -0
  99. package/dist/actions/initFullScreen.js +32 -32
  100. package/dist/actions/initFullScreen.js.map +1 -0
  101. package/dist/actions/initLightBox.d.ts +4 -0
  102. package/dist/actions/initLightBox.d.ts.map +1 -0
  103. package/dist/actions/initLightBox.js +11 -12
  104. package/dist/actions/initLightBox.js.map +1 -0
  105. package/dist/actions/initMagnifier.d.ts +4 -0
  106. package/dist/actions/initMagnifier.d.ts.map +1 -0
  107. package/dist/actions/initMagnifier.js +42 -54
  108. package/dist/actions/initMagnifier.js.map +1 -0
  109. package/dist/actions/initNavigateWithKeys.d.ts +4 -0
  110. package/dist/actions/initNavigateWithKeys.d.ts.map +1 -0
  111. package/dist/actions/initNavigateWithKeys.js +18 -27
  112. package/dist/actions/initNavigateWithKeys.js.map +1 -0
  113. package/dist/actions/initOpen.d.ts +4 -0
  114. package/dist/actions/initOpen.d.ts.map +1 -0
  115. package/dist/actions/initOpen.js +27 -28
  116. package/dist/actions/initOpen.js.map +1 -0
  117. package/dist/actions/initWheel.d.ts +4 -0
  118. package/dist/actions/initWheel.d.ts.map +1 -0
  119. package/dist/actions/initWheel.js +27 -49
  120. package/dist/actions/initWheel.js.map +1 -0
  121. package/dist/actions/setStyles.d.ts +4 -0
  122. package/dist/actions/setStyles.d.ts.map +1 -0
  123. package/dist/actions/setStyles.js +23 -24
  124. package/dist/actions/setStyles.js.map +1 -0
  125. package/dist/components/GSZoom.d.ts +23 -0
  126. package/dist/components/GSZoom.d.ts.map +1 -0
  127. package/dist/components/GSZoom.js +122 -177
  128. package/dist/components/GSZoom.js.map +1 -0
  129. package/dist/components/styles/GSZoomCSS.d.ts +3 -0
  130. package/dist/components/styles/GSZoomCSS.d.ts.map +1 -0
  131. package/dist/components/styles/GSZoomCSS.js +238 -0
  132. package/dist/components/styles/GSZoomCSS.js.map +1 -0
  133. package/dist/constants/defaultParams.d.ts +4 -0
  134. package/dist/constants/defaultParams.d.ts.map +1 -0
  135. package/dist/constants/defaultParams.js +18 -19
  136. package/dist/constants/defaultParams.js.map +1 -0
  137. package/dist/constants/icons.d.ts +13 -0
  138. package/dist/constants/icons.d.ts.map +1 -0
  139. package/dist/constants/icons.js +16 -25
  140. package/dist/constants/icons.js.map +1 -0
  141. package/dist/constants/magnifierDefaultProps.d.ts +4 -0
  142. package/dist/constants/magnifierDefaultProps.d.ts.map +1 -0
  143. package/dist/constants/magnifierDefaultProps.js +7 -7
  144. package/dist/constants/magnifierDefaultProps.js.map +1 -0
  145. package/dist/constants/types.d.ts +6 -0
  146. package/dist/constants/types.d.ts.map +1 -0
  147. package/dist/constants/types.js +6 -6
  148. package/dist/constants/types.js.map +1 -0
  149. package/dist/helpers/uihelpers.d.ts +2 -0
  150. package/dist/helpers/uihelpers.d.ts.map +1 -0
  151. package/dist/helpers/uihelpers.js +8 -9
  152. package/dist/helpers/uihelpers.js.map +1 -0
  153. package/dist/types/params.d.ts +35 -0
  154. package/dist/types/params.d.ts.map +1 -0
  155. package/dist/types/params.js +2 -0
  156. package/dist/types/params.js.map +1 -0
  157. package/dist/types/ref.d.ts +23 -0
  158. package/dist/types/ref.d.ts.map +1 -0
  159. package/dist/types/ref.js +2 -0
  160. package/dist/types/ref.js.map +1 -0
  161. package/dist-js/bundle.js +1689 -0
  162. package/helpers/uihelpers.ts +7 -0
  163. package/package.json +74 -43
  164. package/styles/GSZoom.scss +252 -0
  165. package/types/global.d.ts +33 -0
  166. package/types/params.ts +36 -0
  167. package/types/ref.ts +23 -0
  168. package/dist/components/styles/GSZoom.css.map +0 -1
  169. package/index.js +0 -3
  170. /package/{dist → components/styles}/GSZoom.css +0 -0
  171. /package/{dist/components/styles → styles}/GSZoom.css +0 -0
@@ -1,254 +1,252 @@
1
- html.gs-zoom-opened {
2
- overflow: hidden !important;
3
- touch-action: pan-x pan-y;
4
- body {
5
- touch-action: pan-x pan-y;
6
- }
7
- }
8
- .gs-zoom-magnifier-instance {
9
- &:hover {
10
- cursor: none;
11
- }
12
- }
13
- .gs-zoom-magnifier {
14
- pointer-events: none;
15
- position: fixed;
16
- z-index: 9999;
17
- border: 4px solid #fff;
18
- aspect-ratio: 1;
19
- overflow: hidden;
20
- &[data-type="circle"] {
21
- border-radius: 50%;
22
- }
23
- img {
24
- position: absolute;
25
- transform-origin: top left;
26
- max-width: unset !important;
27
- }
28
- }
29
- .gs-zoom-container {
30
- position: fixed;
31
- z-index: 9999999999;
32
- width: 100vw;
33
- height: 100dvh;
34
- top: 0;
35
- left: 0;
36
- overflow: hidden;
37
- backdrop-filter: blur(50px);
38
-
39
- .gs-zoom-autoplayline {
40
- position: fixed;
41
- height: 4px;
42
- top: 0;
43
- left: 0;
44
- z-index: 999;
45
- background-color: red;
46
- }
47
- button {
48
- cursor: pointer;
49
- outline: none !important;
50
- }
51
- * {
52
- -webkit-user-drag: none;
53
- -moz-user-select: none;
54
- -webkit-user-select: none;
55
- -ms-user-select: none;
56
- user-select: none;
57
- }
58
- .gs-zoom-header {
59
- position: fixed;
60
- right: 10px;
61
- top: 10px;
62
- //width: 100%;
63
- display: flex;
64
- justify-content: flex-end;
65
- align-items: center;
66
- z-index: 99;
67
-
68
- .gs-zoom-actions {
69
- display: flex;
70
- align-items: center;
71
- .gs-zoom-action {
72
- width: 40px;
73
- height: 40px;
74
- background-color: rgba(35, 35, 35, 0.65);
75
- display: flex;
76
- align-items: center;
77
- justify-content: center;
78
- border: none;
79
-
80
- svg {
81
- fill: #fff;
82
- width: 18px;
83
- }
84
- }
85
- }
86
- }
87
- .gs-zoom-img-list {
88
- position: relative;
89
- z-index: 2;
90
- display: flex;
91
- width: max-content;
92
- .gs-zoom-main-img {
93
- width: 100vw;
94
- height: 100dvh;
95
- display: flex;
96
- align-items: center;
97
- justify-content: center;
98
- position: relative;
99
- overflow: hidden;
100
-
101
- .gs-zoom-img-touch {
102
- position: absolute;
103
- top: 0;
104
- left: 0;
105
- right: 0;
106
- bottom: 0;
107
- z-index: 2;
108
- }
109
-
110
- .gz-zoom-loading-container {
111
- display: none;
112
- position: absolute;
113
- top: 50%;
114
- left: 50%;
115
- transform: translate(-50%, -50%);
116
- }
117
- .gs-zoom-img {
118
- max-width: 100%;
119
- max-height: 100%;
120
- //transition: 0.15s;
121
- &.gs-zoom-is-adjusting {
122
- transition: 0.4s ease-in-out !important;
123
- }
124
- }
125
- &.gz-zoom-is-loading {
126
- .gz-zoom-loading-container {
127
- display: block;
128
- }
129
- .gs-zoom-img {
130
- visibility: hidden;
131
- }
132
- }
133
- .gs-zoom-info-data {
134
- position: absolute;
135
- left: 0;
136
- bottom: 0;
137
- right: 0;
138
- padding: 20px 20px 90px;
139
- display: flex;
140
- flex-direction: column;
141
- align-items: center;
142
- color: #fff;
143
- background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
144
- }
145
- }
146
- }
147
- .gs-zoom-additionals {
148
- position: fixed;
149
- bottom: 0;
150
- left: 0;
151
- width: 100%;
152
- overflow-x: hidden;
153
- padding: 5px 0;
154
- display: flex;
155
- justify-content: center;
156
- background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
157
- transform-origin: bottom;
158
- .gs-add-list-container {
159
- overflow-x: hidden;
160
- max-width: 100%;
161
- .gs-add-list {
162
- display: flex;
163
- gap: 5px;
164
- width: max-content;
165
- justify-content: center;
166
- flex-wrap: nowrap;
167
-
168
- .gs-add-item {
169
- width: 80px;
170
- aspect-ratio: 1;
171
- display: flex;
172
- align-items: center;
173
- justify-content: center;
174
- border: 1px solid #000;
175
- opacity: 0.5;
176
- transition: 0.2s ease-out;
177
- transform: scale(0.8);
178
- cursor: pointer;
179
- &:hover,
180
- &.active {
181
- transform: scale(1);
182
- opacity: 1;
183
- }
184
- img {
185
- max-width: 100%;
186
- max-height: 100%;
187
- }
188
- }
189
- }
190
- }
191
- &.gs-zoom-hidden {
192
- z-index: 1;
193
- opacity: 0;
194
- .gs-add-list {
195
- transform: scale(0.9);
196
- }
197
- }
198
- }
199
- &:not(.gs-additional-isdragging) {
200
- .gs-zoom-additionals {
201
- .gs-add-list-container {
202
- .gs-add-list {
203
- transition: 0.3s transform ease-in-out;
204
- }
205
- }
206
- }
207
- }
208
- .gs-zoom-navigations {
209
- button {
210
- border: none;
211
- position: fixed;
212
- top: 50%;
213
- width: 50px;
214
- background-color: rgba(35, 35, 35, 0.65);
215
- aspect-ratio: 1;
216
- display: inline-flex;
217
- align-items: center;
218
- justify-content: center;
219
- font-size: 28px;
220
- color: #fff;
221
- transform: translateY(-50%);
222
-
223
- svg {
224
- fill: #fff;
225
- width: 18px;
226
- }
227
- }
228
- .gs-zoom-next {
229
- right: 10px;
230
- }
231
- .gs-zoom-prev {
232
- left: 10px;
233
- }
234
- }
235
- .gs-zoom-hide-inzoomed {
236
- z-index: 3;
237
- opacity: 1;
238
- transform: scale(1);
239
- transition: 0.3s ease-in-out;
240
- }
241
- &.gs-zoom-is-zoomed {
242
- .gs-zoom-hide-inzoomed {
243
- z-index: 1;
244
- opacity: 0;
245
- transform: scale(0.9);
246
- &.gs-zoom-additionals {
247
- transform: scale(1);
248
- .gs-add-list {
249
- transform: scale(0.9);
250
- }
251
- }
252
- }
253
- }
254
- }
1
+ html.gs-zoom-opened {
2
+ overflow: hidden !important;
3
+ touch-action: pan-x pan-y;
4
+ body {
5
+ touch-action: pan-x pan-y;
6
+ }
7
+ }
8
+ .gs-zoom-magnifier-instance {
9
+ &:hover {
10
+ cursor: none;
11
+ }
12
+ }
13
+ .gs-zoom-magnifier {
14
+ pointer-events: none;
15
+ position: fixed;
16
+ z-index: 9999;
17
+ border: 4px solid #fff;
18
+ aspect-ratio: 1;
19
+ overflow: hidden;
20
+ &[data-type="circle"] {
21
+ border-radius: 50%;
22
+ }
23
+ img {
24
+ position: absolute;
25
+ transform-origin: top left;
26
+ max-width: unset !important;
27
+ }
28
+ }
29
+ .gs-zoom-container {
30
+ position: fixed;
31
+ z-index: 9999999999;
32
+ width: 100vw;
33
+ height: 100dvh;
34
+ top: 0;
35
+ left: 0;
36
+ overflow: hidden;
37
+ backdrop-filter: blur(50px);
38
+
39
+ .gs-zoom-autoplayline {
40
+ position: fixed;
41
+ height: 4px;
42
+ top: 0;
43
+ left: 0;
44
+ z-index: 999;
45
+ background-color: red;
46
+ }
47
+ button {
48
+ cursor: pointer;
49
+ outline: none !important;
50
+ }
51
+ * {
52
+ -webkit-user-drag: none;
53
+ -moz-user-select: none;
54
+ -webkit-user-select: none;
55
+ -ms-user-select: none;
56
+ user-select: none;
57
+ }
58
+ .gs-zoom-header {
59
+ position: fixed;
60
+ right: 10px;
61
+ top: 10px;
62
+ display: flex;
63
+ justify-content: flex-end;
64
+ align-items: center;
65
+ z-index: 99;
66
+
67
+ .gs-zoom-actions {
68
+ display: flex;
69
+ align-items: center;
70
+ .gs-zoom-action {
71
+ width: 40px;
72
+ height: 40px;
73
+ background-color: rgba(35, 35, 35, 0.65);
74
+ display: flex;
75
+ align-items: center;
76
+ justify-content: center;
77
+ border: none;
78
+
79
+ svg {
80
+ fill: #fff;
81
+ width: 18px;
82
+ }
83
+ }
84
+ }
85
+ }
86
+ .gs-zoom-img-list {
87
+ position: relative;
88
+ z-index: 2;
89
+ display: flex;
90
+ width: max-content;
91
+ .gs-zoom-main-img {
92
+ width: 100vw;
93
+ height: 100dvh;
94
+ display: flex;
95
+ align-items: center;
96
+ justify-content: center;
97
+ position: relative;
98
+ overflow: hidden;
99
+
100
+ .gs-zoom-img-touch {
101
+ position: absolute;
102
+ top: 0;
103
+ left: 0;
104
+ right: 0;
105
+ bottom: 0;
106
+ z-index: 2;
107
+ }
108
+
109
+ .gz-zoom-loading-container {
110
+ display: none;
111
+ position: absolute;
112
+ top: 50%;
113
+ left: 50%;
114
+ transform: translate(-50%, -50%);
115
+ }
116
+ .gs-zoom-img {
117
+ max-width: 100%;
118
+ max-height: 100%;
119
+ &.gs-zoom-is-adjusting {
120
+ transition: 0.4s ease-in-out !important;
121
+ }
122
+ }
123
+ &.gz-zoom-is-loading {
124
+ .gz-zoom-loading-container {
125
+ display: block;
126
+ }
127
+ .gs-zoom-img {
128
+ visibility: hidden;
129
+ }
130
+ }
131
+ .gs-zoom-info-data {
132
+ position: absolute;
133
+ left: 0;
134
+ bottom: 0;
135
+ right: 0;
136
+ padding: 20px 20px 90px;
137
+ display: flex;
138
+ flex-direction: column;
139
+ align-items: center;
140
+ color: #fff;
141
+ background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
142
+ }
143
+ }
144
+ }
145
+ .gs-zoom-additionals {
146
+ position: fixed;
147
+ bottom: 0;
148
+ left: 0;
149
+ width: 100%;
150
+ overflow-x: hidden;
151
+ padding: 5px 0;
152
+ display: flex;
153
+ justify-content: center;
154
+ background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
155
+ transform-origin: bottom;
156
+ .gs-add-list-container {
157
+ overflow-x: hidden;
158
+ max-width: 100%;
159
+ .gs-add-list {
160
+ display: flex;
161
+ gap: 5px;
162
+ width: max-content;
163
+ justify-content: center;
164
+ flex-wrap: nowrap;
165
+
166
+ .gs-add-item {
167
+ width: 80px;
168
+ aspect-ratio: 1;
169
+ display: flex;
170
+ align-items: center;
171
+ justify-content: center;
172
+ border: 1px solid #000;
173
+ opacity: 0.5;
174
+ transition: 0.2s ease-out;
175
+ transform: scale(0.8);
176
+ cursor: pointer;
177
+ &:hover,
178
+ &.active {
179
+ transform: scale(1);
180
+ opacity: 1;
181
+ }
182
+ img {
183
+ max-width: 100%;
184
+ max-height: 100%;
185
+ }
186
+ }
187
+ }
188
+ }
189
+ &.gs-zoom-hidden {
190
+ z-index: 1;
191
+ opacity: 0;
192
+ .gs-add-list {
193
+ transform: scale(0.9);
194
+ }
195
+ }
196
+ }
197
+ &:not(.gs-additional-isdragging) {
198
+ .gs-zoom-additionals {
199
+ .gs-add-list-container {
200
+ .gs-add-list {
201
+ transition: 0.3s transform ease-in-out;
202
+ }
203
+ }
204
+ }
205
+ }
206
+ .gs-zoom-navigations {
207
+ button {
208
+ border: none;
209
+ position: fixed;
210
+ top: 50%;
211
+ width: 50px;
212
+ background-color: rgba(35, 35, 35, 0.65);
213
+ aspect-ratio: 1;
214
+ display: inline-flex;
215
+ align-items: center;
216
+ justify-content: center;
217
+ font-size: 28px;
218
+ color: #fff;
219
+ transform: translateY(-50%);
220
+
221
+ svg {
222
+ fill: #fff;
223
+ width: 18px;
224
+ }
225
+ }
226
+ .gs-zoom-next {
227
+ right: 10px;
228
+ }
229
+ .gs-zoom-prev {
230
+ left: 10px;
231
+ }
232
+ }
233
+ .gs-zoom-hide-inzoomed {
234
+ z-index: 3;
235
+ opacity: 1;
236
+ transform: scale(1);
237
+ transition: 0.3s ease-in-out;
238
+ }
239
+ &.gs-zoom-is-zoomed {
240
+ .gs-zoom-hide-inzoomed {
241
+ z-index: 1;
242
+ opacity: 0;
243
+ transform: scale(0.9);
244
+ &.gs-zoom-additionals {
245
+ transform: scale(1);
246
+ .gs-add-list {
247
+ transform: scale(0.9);
248
+ }
249
+ }
250
+ }
251
+ }
252
+ }