basesite-shared-grid-lib 15.10.103 → 15.10.104

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "basesite-shared-grid-lib",
3
- "version": "15.10.103",
3
+ "version": "15.10.104",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "19.0.5",
6
6
  "@angular/core": "19.0.5",
@@ -1,416 +1,416 @@
1
- @import 'ag-grid-community/styles/ag-grid.css';
2
- @import 'ag-grid-community/styles/ag-theme-balham.css';
3
-
4
-
5
- /**
6
- * Media Queries break points declaration
7
- */
8
-
9
- $grid-xs-breakpoint: 576px;
10
-
11
- $grid-sm-breakpoint: 768px;
12
-
13
- $grid-md-breakpoint: 992px;
14
-
15
- $grid-lg-breakpoint: 1200px;
16
-
17
- $grid-xl-breakpoint: 1366px;
18
-
19
-
20
- // Extra Small devices
21
- @mixin xs {
22
- @media (max-width: #{$grid-xs-breakpoint}) {
23
- @content;
24
- }
25
- }
26
-
27
- // Small devices
28
- @mixin sm {
29
- @media (max-width: #{$grid-sm-breakpoint}) {
30
- @content;
31
- }
32
- }
33
-
34
- // Medium devices
35
- @mixin md {
36
- @media (max-width: #{$grid-md-breakpoint}) {
37
- @content;
38
- }
39
- }
40
-
41
- // Large devices
42
- @mixin lg {
43
- @media (max-width: #{$grid-lg-breakpoint}) {
44
- @content;
45
- }
46
- }
47
-
48
- // Extra large devices
49
- @mixin xl {
50
- @media (max-width: #{$grid-xl-breakpoint}) {
51
- @content;
52
- }
53
- }
54
-
55
- // Custom devices
56
- @mixin rwd($screen) {
57
- @media (max-width: #{$screen}px) {
58
- @content;
59
- }
60
- }
61
-
62
-
63
- .shared-grid-lib button {
64
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
65
- }
66
-
67
- .shared-grid-lib .btn-actions {
68
- background: #fff;
69
- border: 1px solid rgba(8, 5, 5, 0.08);
70
- color: #324168;
71
- position: absolute;
72
- border-radius: 3.81078px;
73
- margin-top: 1px;
74
- padding: 3px;
75
- }
76
-
77
- .shared-grid-lib .ag-header-cell.ag-header-active .ag-header-cell-menu-button {
78
- position: unset;
79
- }
80
-
81
- .shared-grid-lib .ag-header-cell-menu-button:not(.ag-header-menu-always-show) {
82
- position: absolute;
83
- }
84
-
85
- .shared-grid-lib .ag-header-cell-text {
86
- font-family: Inter,'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
87
- }
88
- .shared-grid-lib .ag-ltr .ag-cell {
89
- font-family: Inter,'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
90
- }
91
-
92
- .shared-grid-lib .ag-header-cell,
93
- .ag-header-group-cell {
94
- background-color: #fff;
95
- }
96
-
97
- .shared-grid-lib .ag-ltr .ag-cell {
98
- font-size: 12px;
99
- font-weight: 600;
100
- color: #324168;
101
- }
102
-
103
- .shared-grid-lib .ag-wrapper .ag-text-field-input,.ag-number-field-input {
104
- border-radius: 5px;
105
- border: 1px solid #BEBEBE;
106
- background: #FFF;
107
- min-height: 25px;
108
- }
109
-
110
- .shared-grid-lib .ag-header-cell-text {
111
- text-align: center;
112
- font-size: 12px;
113
- font-weight: 600;
114
- color: #324168;
115
- }
116
-
117
- .shared-grid-lib .custom-tooltip {
118
- width: auto;
119
- height: auto;
120
- border: 1px solid cornflowerblue;
121
- overflow: hidden;
122
- background-color: #fff !important;
123
- }
124
-
125
- .shared-grid-lib .custom-tooltip p {
126
- margin: 5px;
127
- white-space: nowrap;
128
- }
129
-
130
- .shared-grid-lib .custom-tooltip p:first-of-type {
131
- font-weight: bold;
132
- }
133
-
134
- .shared-grid-lib .btn-actions::before {
135
- background-color: #fff !important;
136
- border: 1px solid cornflowerblue;
137
- content: attr(data-title);
138
- display: none;
139
- font-weight: bold;
140
- position: absolute;
141
- top: 0px;
142
- left: 25px;
143
- z-index: 1;
144
- }
145
-
146
- .shared-grid-lib .btn-actions:hover::before {
147
- display: block;
148
- position: absolute;
149
- padding: 3px 7px;
150
- }
151
-
152
- .shared-grid-lib .action-button {
153
- overflow: unset !important;
154
- }
155
-
156
- .shared-grid-lib .ag-paging-panel,
157
- .shared-grid-lib .ag-icon::before {
158
- color: #7141B1 !important;
159
- font-weight: 700 !important;
160
- }
161
-
162
- .shared-grid-lib .ag-header-group-text {
163
- color: #324168;
164
- font-weight: 500;
165
- }
166
-
167
- .shared-grid-lib .ag-ltr .ag-cell,
168
- .shared-grid-lib .ag-header-cell-comp-wrapper {
169
- color: #324168;
170
- font-weight: 500;
171
- }
172
-
173
- .shared-grid-lib .ag-row {
174
- border-bottom: 0;
175
- }
176
-
177
- .shared-grid-lib .ag-row-odd {
178
- background-color: #fafafa;
179
- }
180
-
181
- .shared-grid-lib .ag-pinned-right-cols-container>div>div .btn-actions:hover::before {
182
- left: auto;
183
- right: 20px !important;
184
- }
185
-
186
- .shared-grid-lib .ag-pinned-left-cols-container>div>div:last-child .btn-actions:hover::before {
187
- left: auto;
188
- right: 15px !important;
189
- }
190
-
191
-
192
-
193
- .shared-grid-lib .ag-root-wrapper,
194
- .shared-grid-lib .ag-header {
195
- border: none !important;
196
- }
197
-
198
- .shared-grid-lib .ag-pinned-left-header {
199
- border-right: none;
200
- }
201
-
202
- .shared-grid-lib .ag-pinned-right-header {
203
- border-left: none;
204
- }
205
-
206
- .shared-grid-lib .ag-cell.ag-cell-last-left-pinned:not(.ag-cell-range-right):not(.ag-cell-range-single-cell) {
207
- border-right: none;
208
- }
209
-
210
- .shared-grid-lib .ag-cell.ag-cell-first-right-pinned:not(.ag-cell-range-left):not(.ag-cell-range-single-cell) {
211
- border-left: none;
212
- }
213
-
214
- .actions-button-cell {
215
- overflow: visible;
216
- }
217
-
218
- .shared-grid-lib .ag-row {
219
- z-index: 0;
220
- }
221
-
222
- .shared-grid-lib .ag-row.ag-row-focus {
223
- z-index: 1;
224
- }
225
-
226
- .shared-grid-lib .ag-root,
227
- .shared-grid-lib .ag-body-viewport,
228
- .shared-grid-lib .ag-group-value {
229
- overflow: unset !important;
230
- }
231
-
232
- .btn {
233
- line-height: 1;
234
- }
235
-
236
- button.btn.btn-white {
237
- color: #000;
238
- background: #fff;
239
- border: 1px solid #ccc;
240
- border-radius: 4px;
241
- padding: 4px 10px;
242
- }
243
-
244
- .shared-grid-lib .ag-body-clipper.ag-layout-normal {
245
- overflow-y: auto !important;
246
- }
247
-
248
- //check thse stuff
249
- .shared-grid-lib .ag-body-vertical-scroll {
250
- display: none !important;
251
- }
252
-
253
- .overlay-norows {
254
- background: #fff;
255
- text-align: center;
256
- width: 100%;
257
- padding: 10px;
258
- font-weight: 600;
259
- }
260
-
261
- .shared-grid-lib .ag-pinned-right-cols-container .ag-row-position-absolute .ag-cell-value.ag-cell.ag-cell-not-inline-editing.ag-cell-normal-height {
262
- line-height: inherit;
263
- }
264
-
265
- .ag-ltr .ag-floating-filter-button {
266
- margin-left: 2px !important;
267
- }
268
-
269
- .ag-filter-apply-panel .ag-filter-apply-panel-button {
270
- color: #2196f3;
271
- background-color: #fff;
272
- border: 1px solid #2196f3;
273
- padding: 4px 12px;
274
- border-radius: 2px;
275
-
276
- &:hover {
277
- color: white;
278
- background-color: #2196f3;
279
- }
280
- }
281
-
282
- .shared-grid-lib .ag-pinned-right-cols-container .ag-cell-value {
283
- overflow: unset !important;
284
- }
285
-
286
-
287
- /*pagination css*/
288
-
289
- .custom-pagination {
290
- display: flex;
291
- align-items: center;
292
- justify-content: space-between;
293
- padding: 20px 20px 0 20px;
294
- background-color: #F6F9FF;
295
- width: 100%;
296
-
297
- @include sm {
298
- justify-content: flex-start !important;
299
- }
300
- }
301
-
302
- .pagination-nav {
303
- display: flex;
304
- align-items: center;
305
- gap: 4px;
306
- }
307
-
308
- .nav-btn {
309
- display: flex;
310
- align-items: center;
311
- justify-content: center;
312
- width: 16px;
313
- height: 16px;
314
- background-color: #F6F9FF;
315
- padding: 0;
316
- border: unset;
317
- cursor: pointer;
318
- }
319
-
320
- .nav-btn-prev {
321
- display: flex;
322
- align-items: center;
323
- justify-content: center;
324
- width: 16px;
325
- height: 16px;
326
- clip-path: path('M11.3333 15.5807L4.25 8.4974L11.3333 1.41406L12.5906 2.67135L6.76458 8.4974L12.5906 14.3234L11.3333 15.5807Z');
327
- background-color: #324168;
328
- }
329
-
330
- .nav-btn-next {
331
- display: flex;
332
- align-items: center;
333
- justify-content: center;
334
- width: 16px;
335
- height: 16px;
336
- clip-path: path('M5.66667 1.41146L12.75 8.49479L5.66667 15.5781L4.40938 14.3208L10.2354 8.49479L4.40938 2.66875L5.66667 1.41146Z');
337
- background-color: #324168;
338
- }
339
-
340
- .nav-btn:disabled {
341
- opacity: 0.6;
342
- cursor: not-allowed;
343
- }
344
-
345
- .page-number {
346
- display: flex;
347
- align-items: center;
348
- justify-content: center;
349
- width: 20px;
350
- height: 20px;
351
- cursor: pointer;
352
- color: #000;
353
- font-family: Inter;
354
- font-size: 12px;
355
- font-style: normal;
356
- font-weight: 600;
357
- letter-spacing: 0.36px;
358
-
359
- &--increased {
360
- width: 30px;
361
- height: 30px;
362
- }
363
- }
364
-
365
- .page-number.active {
366
- background-color: var(--primary);
367
- color: white;
368
- border-radius: 50%;
369
- }
370
-
371
- .items-per-page {
372
- display: flex;
373
- align-items: center;
374
- gap: 8px;
375
- }
376
-
377
- .items-per-page select {
378
- padding: 4px 8px;
379
- border: 1px solid #e0e0e0;
380
- border-radius: 4px;
381
- }
382
-
383
- .pagination-info {
384
- display: flex;
385
- align-items: flex-end;
386
- color: #000;
387
- font-family: Inter;
388
- font-size: 12px;
389
- font-style: normal;
390
- font-weight: 400;
391
-
392
- @include sm {
393
- display: none !important;
394
- }
395
- }
396
-
397
- .refresh-info {
398
- margin-top: 4px;
399
- margin-left: 20px;
400
-
401
- .refresh-info__label {
402
- font-weight: 700;
403
-
404
- &:last-child {
405
- margin-left: 10px;
406
- }
407
- }
408
- }
409
-
410
- .ellipsis {
411
- display: flex;
412
- align-items: center;
413
- justify-content: center;
414
- width: 28px;
415
- height: 28px;
416
- }
1
+ @import 'ag-grid-community/styles/ag-grid.css';
2
+ @import 'ag-grid-community/styles/ag-theme-balham.css';
3
+
4
+
5
+ /**
6
+ * Media Queries break points declaration
7
+ */
8
+
9
+ $grid-xs-breakpoint: 576px;
10
+
11
+ $grid-sm-breakpoint: 768px;
12
+
13
+ $grid-md-breakpoint: 992px;
14
+
15
+ $grid-lg-breakpoint: 1200px;
16
+
17
+ $grid-xl-breakpoint: 1366px;
18
+
19
+
20
+ // Extra Small devices
21
+ @mixin xs {
22
+ @media (max-width: #{$grid-xs-breakpoint}) {
23
+ @content;
24
+ }
25
+ }
26
+
27
+ // Small devices
28
+ @mixin sm {
29
+ @media (max-width: #{$grid-sm-breakpoint}) {
30
+ @content;
31
+ }
32
+ }
33
+
34
+ // Medium devices
35
+ @mixin md {
36
+ @media (max-width: #{$grid-md-breakpoint}) {
37
+ @content;
38
+ }
39
+ }
40
+
41
+ // Large devices
42
+ @mixin lg {
43
+ @media (max-width: #{$grid-lg-breakpoint}) {
44
+ @content;
45
+ }
46
+ }
47
+
48
+ // Extra large devices
49
+ @mixin xl {
50
+ @media (max-width: #{$grid-xl-breakpoint}) {
51
+ @content;
52
+ }
53
+ }
54
+
55
+ // Custom devices
56
+ @mixin rwd($screen) {
57
+ @media (max-width: #{$screen}px) {
58
+ @content;
59
+ }
60
+ }
61
+
62
+
63
+ .shared-grid-lib button {
64
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
65
+ }
66
+
67
+ .shared-grid-lib .btn-actions {
68
+ background: #fff;
69
+ border: 1px solid rgba(8, 5, 5, 0.08);
70
+ color: #324168;
71
+ position: absolute;
72
+ border-radius: 3.81078px;
73
+ margin-top: 1px;
74
+ padding: 3px;
75
+ }
76
+
77
+ .shared-grid-lib .ag-header-cell.ag-header-active .ag-header-cell-menu-button {
78
+ position: unset;
79
+ }
80
+
81
+ .shared-grid-lib .ag-header-cell-menu-button:not(.ag-header-menu-always-show) {
82
+ position: absolute;
83
+ }
84
+
85
+ .shared-grid-lib .ag-header-cell-text {
86
+ font-family: Inter,'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
87
+ }
88
+ .shared-grid-lib .ag-ltr .ag-cell {
89
+ font-family: Inter,'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
90
+ }
91
+
92
+ .shared-grid-lib .ag-header-cell,
93
+ .ag-header-group-cell {
94
+ background-color: #fff;
95
+ }
96
+
97
+ .shared-grid-lib .ag-ltr .ag-cell {
98
+ font-size: 12px;
99
+ font-weight: 600;
100
+ color: #324168;
101
+ }
102
+
103
+ .shared-grid-lib .ag-wrapper .ag-text-field-input,.ag-number-field-input {
104
+ border-radius: 5px;
105
+ border: 1px solid #BEBEBE;
106
+ background: #FFF;
107
+ min-height: 25px;
108
+ }
109
+
110
+ .shared-grid-lib .ag-header-cell-text {
111
+ text-align: center;
112
+ font-size: 12px;
113
+ font-weight: 600;
114
+ color: #324168;
115
+ }
116
+
117
+ .shared-grid-lib .custom-tooltip {
118
+ width: auto;
119
+ height: auto;
120
+ border: 1px solid cornflowerblue;
121
+ overflow: hidden;
122
+ background-color: #fff !important;
123
+ }
124
+
125
+ .shared-grid-lib .custom-tooltip p {
126
+ margin: 5px;
127
+ white-space: nowrap;
128
+ }
129
+
130
+ .shared-grid-lib .custom-tooltip p:first-of-type {
131
+ font-weight: bold;
132
+ }
133
+
134
+ .shared-grid-lib .btn-actions::before {
135
+ background-color: #fff !important;
136
+ border: 1px solid cornflowerblue;
137
+ content: attr(data-title);
138
+ display: none;
139
+ font-weight: bold;
140
+ position: absolute;
141
+ top: 0px;
142
+ left: 25px;
143
+ z-index: 1;
144
+ }
145
+
146
+ .shared-grid-lib .btn-actions:hover::before {
147
+ display: block;
148
+ position: absolute;
149
+ padding: 3px 7px;
150
+ }
151
+
152
+ .shared-grid-lib .action-button {
153
+ overflow: unset !important;
154
+ }
155
+
156
+ .shared-grid-lib .ag-paging-panel,
157
+ .shared-grid-lib .ag-icon::before {
158
+ color: #7141B1 !important;
159
+ font-weight: 700 !important;
160
+ }
161
+
162
+ .shared-grid-lib .ag-header-group-text {
163
+ color: #324168;
164
+ font-weight: 500;
165
+ }
166
+
167
+ .shared-grid-lib .ag-ltr .ag-cell,
168
+ .shared-grid-lib .ag-header-cell-comp-wrapper {
169
+ color: #324168;
170
+ font-weight: 500;
171
+ }
172
+
173
+ .shared-grid-lib .ag-row {
174
+ border-bottom: 0;
175
+ }
176
+
177
+ .shared-grid-lib .ag-row-odd {
178
+ background-color: #fafafa;
179
+ }
180
+
181
+ .shared-grid-lib .ag-pinned-right-cols-container>div>div .btn-actions:hover::before {
182
+ left: auto;
183
+ right: 20px !important;
184
+ }
185
+
186
+ .shared-grid-lib .ag-pinned-left-cols-container>div>div:last-child .btn-actions:hover::before {
187
+ left: auto;
188
+ right: 15px !important;
189
+ }
190
+
191
+
192
+
193
+ .shared-grid-lib .ag-root-wrapper,
194
+ .shared-grid-lib .ag-header {
195
+ border: none !important;
196
+ }
197
+
198
+ .shared-grid-lib .ag-pinned-left-header {
199
+ border-right: none;
200
+ }
201
+
202
+ .shared-grid-lib .ag-pinned-right-header {
203
+ border-left: none;
204
+ }
205
+
206
+ .shared-grid-lib .ag-cell.ag-cell-last-left-pinned:not(.ag-cell-range-right):not(.ag-cell-range-single-cell) {
207
+ border-right: none;
208
+ }
209
+
210
+ .shared-grid-lib .ag-cell.ag-cell-first-right-pinned:not(.ag-cell-range-left):not(.ag-cell-range-single-cell) {
211
+ border-left: none;
212
+ }
213
+
214
+ .actions-button-cell {
215
+ overflow: visible;
216
+ }
217
+
218
+ .shared-grid-lib .ag-row {
219
+ z-index: 0;
220
+ }
221
+
222
+ .shared-grid-lib .ag-row.ag-row-focus {
223
+ z-index: 1;
224
+ }
225
+
226
+ .shared-grid-lib .ag-root,
227
+ .shared-grid-lib .ag-body-viewport,
228
+ .shared-grid-lib .ag-group-value {
229
+ overflow: unset !important;
230
+ }
231
+
232
+ .btn {
233
+ line-height: 1;
234
+ }
235
+
236
+ button.btn.btn-white {
237
+ color: #000;
238
+ background: #fff;
239
+ border: 1px solid #ccc;
240
+ border-radius: 4px;
241
+ padding: 4px 10px;
242
+ }
243
+
244
+ .shared-grid-lib .ag-body-clipper.ag-layout-normal {
245
+ overflow-y: auto !important;
246
+ }
247
+
248
+ //check thse stuff
249
+ .shared-grid-lib .ag-body-vertical-scroll {
250
+ display: none !important;
251
+ }
252
+
253
+ .overlay-norows {
254
+ background: #fff;
255
+ text-align: center;
256
+ width: 100%;
257
+ padding: 10px;
258
+ font-weight: 600;
259
+ }
260
+
261
+ .shared-grid-lib .ag-pinned-right-cols-container .ag-row-position-absolute .ag-cell-value.ag-cell.ag-cell-not-inline-editing.ag-cell-normal-height {
262
+ line-height: inherit;
263
+ }
264
+
265
+ .ag-ltr .ag-floating-filter-button {
266
+ margin-left: 2px !important;
267
+ }
268
+
269
+ .ag-filter-apply-panel .ag-filter-apply-panel-button {
270
+ color: #2196f3;
271
+ background-color: #fff;
272
+ border: 1px solid #2196f3;
273
+ padding: 4px 12px;
274
+ border-radius: 2px;
275
+
276
+ &:hover {
277
+ color: white;
278
+ background-color: #2196f3;
279
+ }
280
+ }
281
+
282
+ .shared-grid-lib .ag-pinned-right-cols-container .ag-cell-value {
283
+ overflow: unset !important;
284
+ }
285
+
286
+
287
+ /*pagination css*/
288
+
289
+ .custom-pagination {
290
+ display: flex;
291
+ align-items: center;
292
+ justify-content: space-between;
293
+ padding: 20px 20px 0 20px;
294
+ background-color: #F6F9FF;
295
+ width: 100%;
296
+
297
+ @include sm {
298
+ justify-content: flex-start !important;
299
+ }
300
+ }
301
+
302
+ .pagination-nav {
303
+ display: flex;
304
+ align-items: center;
305
+ gap: 4px;
306
+ }
307
+
308
+ .nav-btn {
309
+ display: flex;
310
+ align-items: center;
311
+ justify-content: center;
312
+ width: 16px;
313
+ height: 16px;
314
+ background-color: #F6F9FF;
315
+ padding: 0;
316
+ border: unset;
317
+ cursor: pointer;
318
+ }
319
+
320
+ .nav-btn-prev {
321
+ display: flex;
322
+ align-items: center;
323
+ justify-content: center;
324
+ width: 16px;
325
+ height: 16px;
326
+ clip-path: path('M11.3333 15.5807L4.25 8.4974L11.3333 1.41406L12.5906 2.67135L6.76458 8.4974L12.5906 14.3234L11.3333 15.5807Z');
327
+ background-color: #324168;
328
+ }
329
+
330
+ .nav-btn-next {
331
+ display: flex;
332
+ align-items: center;
333
+ justify-content: center;
334
+ width: 16px;
335
+ height: 16px;
336
+ clip-path: path('M5.66667 1.41146L12.75 8.49479L5.66667 15.5781L4.40938 14.3208L10.2354 8.49479L4.40938 2.66875L5.66667 1.41146Z');
337
+ background-color: #324168;
338
+ }
339
+
340
+ .nav-btn:disabled {
341
+ opacity: 0.6;
342
+ cursor: not-allowed;
343
+ }
344
+
345
+ .page-number {
346
+ display: flex;
347
+ align-items: center;
348
+ justify-content: center;
349
+ width: 20px;
350
+ height: 20px;
351
+ cursor: pointer;
352
+ color: #000;
353
+ font-family: Inter;
354
+ font-size: 12px;
355
+ font-style: normal;
356
+ font-weight: 600;
357
+ letter-spacing: 0.36px;
358
+
359
+ &--increased {
360
+ width: 30px;
361
+ height: 30px;
362
+ }
363
+ }
364
+
365
+ .page-number.active {
366
+ background-color: var(--primary);
367
+ color: white;
368
+ border-radius: 50%;
369
+ }
370
+
371
+ .items-per-page {
372
+ display: flex;
373
+ align-items: center;
374
+ gap: 8px;
375
+ }
376
+
377
+ .items-per-page select {
378
+ padding: 4px 8px;
379
+ border: 1px solid #e0e0e0;
380
+ border-radius: 4px;
381
+ }
382
+
383
+ .pagination-info {
384
+ display: flex;
385
+ align-items: flex-end;
386
+ color: #000;
387
+ font-family: Inter;
388
+ font-size: 12px;
389
+ font-style: normal;
390
+ font-weight: 400;
391
+
392
+ @include sm {
393
+ display: none !important;
394
+ }
395
+ }
396
+
397
+ .refresh-info {
398
+ margin-top: 4px;
399
+ margin-left: 20px;
400
+
401
+ .refresh-info__label {
402
+ font-weight: 700;
403
+
404
+ &:last-child {
405
+ margin-left: 10px;
406
+ }
407
+ }
408
+ }
409
+
410
+ .ellipsis {
411
+ display: flex;
412
+ align-items: center;
413
+ justify-content: center;
414
+ width: 28px;
415
+ height: 28px;
416
+ }