@bagelink/vue 1.6.7 → 1.6.17
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/dist/components/Swiper.vue.d.ts +2322 -2
- package/dist/components/Swiper.vue.d.ts.map +1 -1
- package/dist/components/form/FieldArray.vue.d.ts.map +1 -1
- package/dist/index.cjs +16 -38
- package/dist/index.mjs +5893 -6969
- package/dist/style.css +1 -1
- package/dist/utils/index.d.ts +1 -0
- package/dist/utils/index.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/components/Carousel.vue +43 -43
- package/src/components/ListItem.vue +2 -2
- package/src/components/Swiper.vue +85 -79
- package/src/components/form/FieldArray.vue +56 -50
- package/src/components/form/inputs/CodeEditor/Index.vue +1 -1
- package/src/composables/useExcel.ts +6 -6
- package/src/styles/colors.css +176 -0
- package/src/styles/layout.css +231 -0
- package/src/styles/mobilLayout.css +232 -0
- package/src/styles/mobileColors.css +176 -0
- package/src/utils/index.ts +46 -25
- package/vite.config.ts +1 -1
package/src/styles/layout.css
CHANGED
|
@@ -7196,6 +7196,27 @@
|
|
|
7196
7196
|
align-self: start;
|
|
7197
7197
|
}
|
|
7198
7198
|
|
|
7199
|
+
.sticky-025,
|
|
7200
|
+
.position-sticky-025 {
|
|
7201
|
+
position: sticky !important;
|
|
7202
|
+
top: 0.25rem;
|
|
7203
|
+
align-self: start;
|
|
7204
|
+
}
|
|
7205
|
+
|
|
7206
|
+
.sticky-05,
|
|
7207
|
+
.position-sticky-05 {
|
|
7208
|
+
position: sticky !important;
|
|
7209
|
+
top: 0.5rem;
|
|
7210
|
+
align-self: start;
|
|
7211
|
+
}
|
|
7212
|
+
|
|
7213
|
+
.sticky-075,
|
|
7214
|
+
.position-sticky-075 {
|
|
7215
|
+
position: sticky !important;
|
|
7216
|
+
top: 0.75rem;
|
|
7217
|
+
align-self: start;
|
|
7218
|
+
}
|
|
7219
|
+
|
|
7199
7220
|
.sticky-1,
|
|
7200
7221
|
.position-sticky-1 {
|
|
7201
7222
|
position: sticky !important;
|
|
@@ -7203,6 +7224,27 @@
|
|
|
7203
7224
|
align-self: start;
|
|
7204
7225
|
}
|
|
7205
7226
|
|
|
7227
|
+
.sticky-1-25,
|
|
7228
|
+
.position-sticky-1-25 {
|
|
7229
|
+
position: sticky !important;
|
|
7230
|
+
top: 1.25rem;
|
|
7231
|
+
align-self: start;
|
|
7232
|
+
}
|
|
7233
|
+
|
|
7234
|
+
.sticky-1-5,
|
|
7235
|
+
.position-sticky-1-5 {
|
|
7236
|
+
position: sticky !important;
|
|
7237
|
+
top: 1.5rem;
|
|
7238
|
+
align-self: start;
|
|
7239
|
+
}
|
|
7240
|
+
|
|
7241
|
+
.sticky-1-75,
|
|
7242
|
+
.position-sticky-1-75 {
|
|
7243
|
+
position: sticky !important;
|
|
7244
|
+
top: 1.75rem;
|
|
7245
|
+
align-self: start;
|
|
7246
|
+
}
|
|
7247
|
+
|
|
7206
7248
|
.sticky-2,
|
|
7207
7249
|
.position-sticky-2 {
|
|
7208
7250
|
position: sticky !important;
|
|
@@ -7210,6 +7252,27 @@
|
|
|
7210
7252
|
align-self: start;
|
|
7211
7253
|
}
|
|
7212
7254
|
|
|
7255
|
+
.sticky-2-25,
|
|
7256
|
+
.position-sticky-2-25 {
|
|
7257
|
+
position: sticky !important;
|
|
7258
|
+
top: 2.25rem;
|
|
7259
|
+
align-self: start;
|
|
7260
|
+
}
|
|
7261
|
+
|
|
7262
|
+
.sticky-2-5,
|
|
7263
|
+
.position-sticky-2-5 {
|
|
7264
|
+
position: sticky !important;
|
|
7265
|
+
top: 2.5rem;
|
|
7266
|
+
align-self: start;
|
|
7267
|
+
}
|
|
7268
|
+
|
|
7269
|
+
.sticky-2-75,
|
|
7270
|
+
.position-sticky-2-75 {
|
|
7271
|
+
position: sticky !important;
|
|
7272
|
+
top: 2.75rem;
|
|
7273
|
+
align-self: start;
|
|
7274
|
+
}
|
|
7275
|
+
|
|
7213
7276
|
.sticky-3,
|
|
7214
7277
|
.position-sticky-3 {
|
|
7215
7278
|
position: sticky !important;
|
|
@@ -7217,6 +7280,27 @@
|
|
|
7217
7280
|
align-self: start;
|
|
7218
7281
|
}
|
|
7219
7282
|
|
|
7283
|
+
.sticky-3-25,
|
|
7284
|
+
.position-sticky-3-25 {
|
|
7285
|
+
position: sticky !important;
|
|
7286
|
+
top: 3.25rem;
|
|
7287
|
+
align-self: start;
|
|
7288
|
+
}
|
|
7289
|
+
|
|
7290
|
+
.sticky-3-5,
|
|
7291
|
+
.position-sticky-3-5 {
|
|
7292
|
+
position: sticky !important;
|
|
7293
|
+
top: 3.5rem;
|
|
7294
|
+
align-self: start;
|
|
7295
|
+
}
|
|
7296
|
+
|
|
7297
|
+
.sticky-3-75,
|
|
7298
|
+
.position-sticky-3-75 {
|
|
7299
|
+
position: sticky !important;
|
|
7300
|
+
top: 3.75rem;
|
|
7301
|
+
align-self: start;
|
|
7302
|
+
}
|
|
7303
|
+
|
|
7220
7304
|
.sticky-4,
|
|
7221
7305
|
.position-sticky-4 {
|
|
7222
7306
|
position: sticky !important;
|
|
@@ -7224,6 +7308,27 @@
|
|
|
7224
7308
|
align-self: start;
|
|
7225
7309
|
}
|
|
7226
7310
|
|
|
7311
|
+
.sticky-4-25,
|
|
7312
|
+
.position-sticky-4-25 {
|
|
7313
|
+
position: sticky !important;
|
|
7314
|
+
top: 4.25rem;
|
|
7315
|
+
align-self: start;
|
|
7316
|
+
}
|
|
7317
|
+
|
|
7318
|
+
.sticky-4-5,
|
|
7319
|
+
.position-sticky-4-5 {
|
|
7320
|
+
position: sticky !important;
|
|
7321
|
+
top: 4.5rem;
|
|
7322
|
+
align-self: start;
|
|
7323
|
+
}
|
|
7324
|
+
|
|
7325
|
+
.sticky-4-75,
|
|
7326
|
+
.position-sticky-4-75 {
|
|
7327
|
+
position: sticky !important;
|
|
7328
|
+
top: 4.75rem;
|
|
7329
|
+
align-self: start;
|
|
7330
|
+
}
|
|
7331
|
+
|
|
7227
7332
|
.sticky-5,
|
|
7228
7333
|
.position-sticky-5 {
|
|
7229
7334
|
position: sticky !important;
|
|
@@ -7231,6 +7336,27 @@
|
|
|
7231
7336
|
align-self: start;
|
|
7232
7337
|
}
|
|
7233
7338
|
|
|
7339
|
+
.sticky-5-25,
|
|
7340
|
+
.position-sticky-5-25 {
|
|
7341
|
+
position: sticky !important;
|
|
7342
|
+
top: 5.25rem;
|
|
7343
|
+
align-self: start;
|
|
7344
|
+
}
|
|
7345
|
+
|
|
7346
|
+
.sticky-5-5,
|
|
7347
|
+
.position-sticky-5-5 {
|
|
7348
|
+
position: sticky !important;
|
|
7349
|
+
top: 5.5rem;
|
|
7350
|
+
align-self: start;
|
|
7351
|
+
}
|
|
7352
|
+
|
|
7353
|
+
.sticky-5-75,
|
|
7354
|
+
.position-sticky-5-75 {
|
|
7355
|
+
position: sticky !important;
|
|
7356
|
+
top: 5.75rem;
|
|
7357
|
+
align-self: start;
|
|
7358
|
+
}
|
|
7359
|
+
|
|
7234
7360
|
.sticky-6,
|
|
7235
7361
|
.position-sticky-6 {
|
|
7236
7362
|
position: sticky !important;
|
|
@@ -7238,6 +7364,27 @@
|
|
|
7238
7364
|
align-self: start;
|
|
7239
7365
|
}
|
|
7240
7366
|
|
|
7367
|
+
.sticky-6-25,
|
|
7368
|
+
.position-sticky-6-25 {
|
|
7369
|
+
position: sticky !important;
|
|
7370
|
+
top: 6.25rem;
|
|
7371
|
+
align-self: start;
|
|
7372
|
+
}
|
|
7373
|
+
|
|
7374
|
+
.sticky-6-5,
|
|
7375
|
+
.position-sticky-6-5 {
|
|
7376
|
+
position: sticky !important;
|
|
7377
|
+
top: 6.5rem;
|
|
7378
|
+
align-self: start;
|
|
7379
|
+
}
|
|
7380
|
+
|
|
7381
|
+
.sticky-6-75,
|
|
7382
|
+
.position-sticky-6-75 {
|
|
7383
|
+
position: sticky !important;
|
|
7384
|
+
top: 6.75rem;
|
|
7385
|
+
align-self: start;
|
|
7386
|
+
}
|
|
7387
|
+
|
|
7241
7388
|
.sticky-7,
|
|
7242
7389
|
.position-sticky-7 {
|
|
7243
7390
|
position: sticky !important;
|
|
@@ -7245,6 +7392,27 @@
|
|
|
7245
7392
|
align-self: start;
|
|
7246
7393
|
}
|
|
7247
7394
|
|
|
7395
|
+
.sticky-7-25,
|
|
7396
|
+
.position-sticky-7-25 {
|
|
7397
|
+
position: sticky !important;
|
|
7398
|
+
top: 7.25rem;
|
|
7399
|
+
align-self: start;
|
|
7400
|
+
}
|
|
7401
|
+
|
|
7402
|
+
.sticky-7-5,
|
|
7403
|
+
.position-sticky-7-5 {
|
|
7404
|
+
position: sticky !important;
|
|
7405
|
+
top: 7.5rem;
|
|
7406
|
+
align-self: start;
|
|
7407
|
+
}
|
|
7408
|
+
|
|
7409
|
+
.sticky-7-75,
|
|
7410
|
+
.position-sticky-7-75 {
|
|
7411
|
+
position: sticky !important;
|
|
7412
|
+
top: 7.75rem;
|
|
7413
|
+
align-self: start;
|
|
7414
|
+
}
|
|
7415
|
+
|
|
7248
7416
|
.sticky-8,
|
|
7249
7417
|
.position-sticky-8 {
|
|
7250
7418
|
position: sticky !important;
|
|
@@ -7252,6 +7420,27 @@
|
|
|
7252
7420
|
align-self: start;
|
|
7253
7421
|
}
|
|
7254
7422
|
|
|
7423
|
+
.sticky-8-25,
|
|
7424
|
+
.position-sticky-8-25 {
|
|
7425
|
+
position: sticky !important;
|
|
7426
|
+
top: 8.25rem;
|
|
7427
|
+
align-self: start;
|
|
7428
|
+
}
|
|
7429
|
+
|
|
7430
|
+
.sticky-8-5,
|
|
7431
|
+
.position-sticky-8-5 {
|
|
7432
|
+
position: sticky !important;
|
|
7433
|
+
top: 8.5rem;
|
|
7434
|
+
align-self: start;
|
|
7435
|
+
}
|
|
7436
|
+
|
|
7437
|
+
.sticky-8-75,
|
|
7438
|
+
.position-sticky-8-75 {
|
|
7439
|
+
position: sticky !important;
|
|
7440
|
+
top: 8.75rem;
|
|
7441
|
+
align-self: start;
|
|
7442
|
+
}
|
|
7443
|
+
|
|
7255
7444
|
.sticky-9,
|
|
7256
7445
|
.position-sticky-9 {
|
|
7257
7446
|
position: sticky !important;
|
|
@@ -7259,6 +7448,27 @@
|
|
|
7259
7448
|
align-self: start;
|
|
7260
7449
|
}
|
|
7261
7450
|
|
|
7451
|
+
.sticky-9-25,
|
|
7452
|
+
.position-sticky-9-25 {
|
|
7453
|
+
position: sticky !important;
|
|
7454
|
+
top: 9.25rem;
|
|
7455
|
+
align-self: start;
|
|
7456
|
+
}
|
|
7457
|
+
|
|
7458
|
+
.sticky-9-5,
|
|
7459
|
+
.position-sticky-9-5 {
|
|
7460
|
+
position: sticky !important;
|
|
7461
|
+
top: 9.5rem;
|
|
7462
|
+
align-self: start;
|
|
7463
|
+
}
|
|
7464
|
+
|
|
7465
|
+
.sticky-9-75,
|
|
7466
|
+
.position-sticky-9-75 {
|
|
7467
|
+
position: sticky !important;
|
|
7468
|
+
top: 9.75rem;
|
|
7469
|
+
align-self: start;
|
|
7470
|
+
}
|
|
7471
|
+
|
|
7262
7472
|
.sticky-10,
|
|
7263
7473
|
.position-sticky-10 {
|
|
7264
7474
|
position: sticky !important;
|
|
@@ -7266,6 +7476,27 @@
|
|
|
7266
7476
|
align-self: start;
|
|
7267
7477
|
}
|
|
7268
7478
|
|
|
7479
|
+
.sticky-10-25,
|
|
7480
|
+
.position-sticky-10-25 {
|
|
7481
|
+
position: sticky !important;
|
|
7482
|
+
top: 10.25rem;
|
|
7483
|
+
align-self: start;
|
|
7484
|
+
}
|
|
7485
|
+
|
|
7486
|
+
.sticky-10-5,
|
|
7487
|
+
.position-sticky-10-5 {
|
|
7488
|
+
position: sticky !important;
|
|
7489
|
+
top: 10.5rem;
|
|
7490
|
+
align-self: start;
|
|
7491
|
+
}
|
|
7492
|
+
|
|
7493
|
+
.sticky-10-75,
|
|
7494
|
+
.position-sticky-10-75 {
|
|
7495
|
+
position: sticky !important;
|
|
7496
|
+
top: 10.75rem;
|
|
7497
|
+
align-self: start;
|
|
7498
|
+
}
|
|
7499
|
+
|
|
7269
7500
|
.flex {
|
|
7270
7501
|
display: flex;
|
|
7271
7502
|
align-items: center;
|
|
@@ -6427,6 +6427,27 @@
|
|
|
6427
6427
|
align-self: start;
|
|
6428
6428
|
}
|
|
6429
6429
|
|
|
6430
|
+
.m_sticky-025,
|
|
6431
|
+
.m_position-sticky-025 {
|
|
6432
|
+
position: sticky !important;
|
|
6433
|
+
top: 0.25rem;
|
|
6434
|
+
align-self: start;
|
|
6435
|
+
}
|
|
6436
|
+
|
|
6437
|
+
.m_sticky-05,
|
|
6438
|
+
.m_position-sticky-05 {
|
|
6439
|
+
position: sticky !important;
|
|
6440
|
+
top: 0.5rem;
|
|
6441
|
+
align-self: start;
|
|
6442
|
+
}
|
|
6443
|
+
|
|
6444
|
+
.m_sticky-075,
|
|
6445
|
+
.m_position-sticky-075 {
|
|
6446
|
+
position: sticky !important;
|
|
6447
|
+
top: 0.75rem;
|
|
6448
|
+
align-self: start;
|
|
6449
|
+
}
|
|
6450
|
+
|
|
6430
6451
|
.m_sticky-1,
|
|
6431
6452
|
.m_position-sticky-1 {
|
|
6432
6453
|
position: sticky !important;
|
|
@@ -6434,6 +6455,27 @@
|
|
|
6434
6455
|
align-self: start;
|
|
6435
6456
|
}
|
|
6436
6457
|
|
|
6458
|
+
.m_sticky-1-25,
|
|
6459
|
+
.m_position-sticky-1-25 {
|
|
6460
|
+
position: sticky !important;
|
|
6461
|
+
top: 1.25rem;
|
|
6462
|
+
align-self: start;
|
|
6463
|
+
}
|
|
6464
|
+
|
|
6465
|
+
.m_sticky-1-5,
|
|
6466
|
+
.m_position-sticky-1-5 {
|
|
6467
|
+
position: sticky !important;
|
|
6468
|
+
top: 1.5rem;
|
|
6469
|
+
align-self: start;
|
|
6470
|
+
}
|
|
6471
|
+
|
|
6472
|
+
.m_sticky-1-75,
|
|
6473
|
+
.m_position-sticky-1-75 {
|
|
6474
|
+
position: sticky !important;
|
|
6475
|
+
top: 1.75rem;
|
|
6476
|
+
align-self: start;
|
|
6477
|
+
}
|
|
6478
|
+
|
|
6437
6479
|
.m_sticky-2,
|
|
6438
6480
|
.m_position-sticky-2 {
|
|
6439
6481
|
position: sticky !important;
|
|
@@ -6441,6 +6483,27 @@
|
|
|
6441
6483
|
align-self: start;
|
|
6442
6484
|
}
|
|
6443
6485
|
|
|
6486
|
+
.m_sticky-2-25,
|
|
6487
|
+
.m_position-sticky-2-25 {
|
|
6488
|
+
position: sticky !important;
|
|
6489
|
+
top: 2.25rem;
|
|
6490
|
+
align-self: start;
|
|
6491
|
+
}
|
|
6492
|
+
|
|
6493
|
+
.m_sticky-2-5,
|
|
6494
|
+
.m_position-sticky-2-5 {
|
|
6495
|
+
position: sticky !important;
|
|
6496
|
+
top: 2.5rem;
|
|
6497
|
+
align-self: start;
|
|
6498
|
+
}
|
|
6499
|
+
|
|
6500
|
+
.m_sticky-2-75,
|
|
6501
|
+
.m_position-sticky-2-75 {
|
|
6502
|
+
position: sticky !important;
|
|
6503
|
+
top: 2.75rem;
|
|
6504
|
+
align-self: start;
|
|
6505
|
+
}
|
|
6506
|
+
|
|
6444
6507
|
.m_sticky-3,
|
|
6445
6508
|
.m_position-sticky-3 {
|
|
6446
6509
|
position: sticky !important;
|
|
@@ -6448,6 +6511,27 @@
|
|
|
6448
6511
|
align-self: start;
|
|
6449
6512
|
}
|
|
6450
6513
|
|
|
6514
|
+
.m_sticky-3-25,
|
|
6515
|
+
.m_position-sticky-3-25 {
|
|
6516
|
+
position: sticky !important;
|
|
6517
|
+
top: 3.25rem;
|
|
6518
|
+
align-self: start;
|
|
6519
|
+
}
|
|
6520
|
+
|
|
6521
|
+
.m_sticky-3-5,
|
|
6522
|
+
.m_position-sticky-3-5 {
|
|
6523
|
+
position: sticky !important;
|
|
6524
|
+
top: 3.5rem;
|
|
6525
|
+
align-self: start;
|
|
6526
|
+
}
|
|
6527
|
+
|
|
6528
|
+
.m_sticky-3-75,
|
|
6529
|
+
.m_position-sticky-3-75 {
|
|
6530
|
+
position: sticky !important;
|
|
6531
|
+
top: 3.75rem;
|
|
6532
|
+
align-self: start;
|
|
6533
|
+
}
|
|
6534
|
+
|
|
6451
6535
|
.m_sticky-4,
|
|
6452
6536
|
.m_position-sticky-4 {
|
|
6453
6537
|
position: sticky !important;
|
|
@@ -6455,6 +6539,27 @@
|
|
|
6455
6539
|
align-self: start;
|
|
6456
6540
|
}
|
|
6457
6541
|
|
|
6542
|
+
.m_sticky-4-25,
|
|
6543
|
+
.m_position-sticky-4-25 {
|
|
6544
|
+
position: sticky !important;
|
|
6545
|
+
top: 4.25rem;
|
|
6546
|
+
align-self: start;
|
|
6547
|
+
}
|
|
6548
|
+
|
|
6549
|
+
.m_sticky-4-5,
|
|
6550
|
+
.m_position-sticky-4-5 {
|
|
6551
|
+
position: sticky !important;
|
|
6552
|
+
top: 4.5rem;
|
|
6553
|
+
align-self: start;
|
|
6554
|
+
}
|
|
6555
|
+
|
|
6556
|
+
.m_sticky-4-75,
|
|
6557
|
+
.m_position-sticky-4-75 {
|
|
6558
|
+
position: sticky !important;
|
|
6559
|
+
top: 4.75rem;
|
|
6560
|
+
align-self: start;
|
|
6561
|
+
}
|
|
6562
|
+
|
|
6458
6563
|
.m_sticky-5,
|
|
6459
6564
|
.m_position-sticky-5 {
|
|
6460
6565
|
position: sticky !important;
|
|
@@ -6462,6 +6567,27 @@
|
|
|
6462
6567
|
align-self: start;
|
|
6463
6568
|
}
|
|
6464
6569
|
|
|
6570
|
+
.m_sticky-5-25,
|
|
6571
|
+
.m_position-sticky-5-25 {
|
|
6572
|
+
position: sticky !important;
|
|
6573
|
+
top: 5.25rem;
|
|
6574
|
+
align-self: start;
|
|
6575
|
+
}
|
|
6576
|
+
|
|
6577
|
+
.m_sticky-5-5,
|
|
6578
|
+
.m_position-sticky-5-5 {
|
|
6579
|
+
position: sticky !important;
|
|
6580
|
+
top: 5.5rem;
|
|
6581
|
+
align-self: start;
|
|
6582
|
+
}
|
|
6583
|
+
|
|
6584
|
+
.m_sticky-5-75,
|
|
6585
|
+
.m_position-sticky-5-75 {
|
|
6586
|
+
position: sticky !important;
|
|
6587
|
+
top: 5.75rem;
|
|
6588
|
+
align-self: start;
|
|
6589
|
+
}
|
|
6590
|
+
|
|
6465
6591
|
.m_sticky-6,
|
|
6466
6592
|
.m_position-sticky-6 {
|
|
6467
6593
|
position: sticky !important;
|
|
@@ -6469,6 +6595,27 @@
|
|
|
6469
6595
|
align-self: start;
|
|
6470
6596
|
}
|
|
6471
6597
|
|
|
6598
|
+
.m_sticky-6,
|
|
6599
|
+
.m_position-sticky-6 {
|
|
6600
|
+
position: sticky !important;
|
|
6601
|
+
top: 6.25rem;
|
|
6602
|
+
align-self: start;
|
|
6603
|
+
}
|
|
6604
|
+
|
|
6605
|
+
.m_sticky-6-5,
|
|
6606
|
+
.m_position-sticky-6-5 {
|
|
6607
|
+
position: sticky !important;
|
|
6608
|
+
top: 6.5rem;
|
|
6609
|
+
align-self: start;
|
|
6610
|
+
}
|
|
6611
|
+
|
|
6612
|
+
.m_sticky-6-75,
|
|
6613
|
+
.m_position-sticky-6-75 {
|
|
6614
|
+
position: sticky !important;
|
|
6615
|
+
top: 6.75rem;
|
|
6616
|
+
align-self: start;
|
|
6617
|
+
}
|
|
6618
|
+
|
|
6472
6619
|
.m_sticky-7,
|
|
6473
6620
|
.m_position-sticky-7 {
|
|
6474
6621
|
position: sticky !important;
|
|
@@ -6476,6 +6623,27 @@
|
|
|
6476
6623
|
align-self: start;
|
|
6477
6624
|
}
|
|
6478
6625
|
|
|
6626
|
+
.m_sticky-7-25,
|
|
6627
|
+
.m_position-sticky-7-25 {
|
|
6628
|
+
position: sticky !important;
|
|
6629
|
+
top: 7.25rem;
|
|
6630
|
+
align-self: start;
|
|
6631
|
+
}
|
|
6632
|
+
|
|
6633
|
+
.m_sticky-7-5,
|
|
6634
|
+
.m_position-sticky-7-5 {
|
|
6635
|
+
position: sticky !important;
|
|
6636
|
+
top: 7.5rem;
|
|
6637
|
+
align-self: start;
|
|
6638
|
+
}
|
|
6639
|
+
|
|
6640
|
+
.m_sticky-7-75,
|
|
6641
|
+
.m_position-sticky-7-75 {
|
|
6642
|
+
position: sticky !important;
|
|
6643
|
+
top: 7.75rem;
|
|
6644
|
+
align-self: start;
|
|
6645
|
+
}
|
|
6646
|
+
|
|
6479
6647
|
.m_sticky-8,
|
|
6480
6648
|
.m_position-sticky-8 {
|
|
6481
6649
|
position: sticky !important;
|
|
@@ -6483,6 +6651,27 @@
|
|
|
6483
6651
|
align-self: start;
|
|
6484
6652
|
}
|
|
6485
6653
|
|
|
6654
|
+
.m_sticky-8-25,
|
|
6655
|
+
.m_position-sticky-8-25 {
|
|
6656
|
+
position: sticky !important;
|
|
6657
|
+
top: 8.25rem;
|
|
6658
|
+
align-self: start;
|
|
6659
|
+
}
|
|
6660
|
+
|
|
6661
|
+
.m_sticky-8-5,
|
|
6662
|
+
.m_position-sticky-8-5 {
|
|
6663
|
+
position: sticky !important;
|
|
6664
|
+
top: 8.5rem;
|
|
6665
|
+
align-self: start;
|
|
6666
|
+
}
|
|
6667
|
+
|
|
6668
|
+
.m_sticky-8-75,
|
|
6669
|
+
.m_position-sticky-8-75 {
|
|
6670
|
+
position: sticky !important;
|
|
6671
|
+
top: 8.75rem;
|
|
6672
|
+
align-self: start;
|
|
6673
|
+
}
|
|
6674
|
+
|
|
6486
6675
|
.m_sticky-9,
|
|
6487
6676
|
.m_position-sticky-9 {
|
|
6488
6677
|
position: sticky !important;
|
|
@@ -6490,6 +6679,27 @@
|
|
|
6490
6679
|
align-self: start;
|
|
6491
6680
|
}
|
|
6492
6681
|
|
|
6682
|
+
.m_sticky-9-25,
|
|
6683
|
+
.m_position-sticky-9-25 {
|
|
6684
|
+
position: sticky !important;
|
|
6685
|
+
top: 9.25rem;
|
|
6686
|
+
align-self: start;
|
|
6687
|
+
}
|
|
6688
|
+
|
|
6689
|
+
.m_sticky-9-5,
|
|
6690
|
+
.m_position-sticky-9-5 {
|
|
6691
|
+
position: sticky !important;
|
|
6692
|
+
top: 9.5rem;
|
|
6693
|
+
align-self: start;
|
|
6694
|
+
}
|
|
6695
|
+
|
|
6696
|
+
.m_sticky-9-75,
|
|
6697
|
+
.m_position-sticky-9-75 {
|
|
6698
|
+
position: sticky !important;
|
|
6699
|
+
top: 9.75rem;
|
|
6700
|
+
align-self: start;
|
|
6701
|
+
}
|
|
6702
|
+
|
|
6493
6703
|
.m_sticky-10,
|
|
6494
6704
|
.m_position-sticky-10 {
|
|
6495
6705
|
position: sticky !important;
|
|
@@ -6497,6 +6707,28 @@
|
|
|
6497
6707
|
align-self: start;
|
|
6498
6708
|
}
|
|
6499
6709
|
|
|
6710
|
+
.m_sticky-10-25,
|
|
6711
|
+
.m_position-sticky-10-25 {
|
|
6712
|
+
position: sticky !important;
|
|
6713
|
+
top: 10.25rem;
|
|
6714
|
+
align-self: start;
|
|
6715
|
+
}
|
|
6716
|
+
|
|
6717
|
+
.m_sticky-10-5,
|
|
6718
|
+
.m_position-sticky-10-5 {
|
|
6719
|
+
position: sticky !important;
|
|
6720
|
+
top: 10.5rem;
|
|
6721
|
+
align-self: start;
|
|
6722
|
+
}
|
|
6723
|
+
|
|
6724
|
+
.m_sticky-10-75,
|
|
6725
|
+
.m_position-sticky-10-75 {
|
|
6726
|
+
position: sticky !important;
|
|
6727
|
+
top: 10.75rem;
|
|
6728
|
+
align-self: start;
|
|
6729
|
+
}
|
|
6730
|
+
|
|
6731
|
+
|
|
6500
6732
|
.m_flex-stretch {
|
|
6501
6733
|
display: flex;
|
|
6502
6734
|
align-items: stretch;
|