ros.grant.common 2.0.1156 → 2.0.1157
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.
|
Binary file
|
|
@@ -479,38 +479,81 @@
|
|
|
479
479
|
.fixed-button-bar {
|
|
480
480
|
position: fixed;
|
|
481
481
|
right: 0;
|
|
482
|
-
top: 20%;
|
|
483
|
-
|
|
484
|
-
box-shadow: 0px 4px 10px rgba(58, 58, 58, 0.25);
|
|
485
|
-
border-radius: 4px 0px 0px 4px;
|
|
486
|
-
padding: 0 4px;
|
|
482
|
+
top: 20%;
|
|
483
|
+
box-shadow: 0px 1px 4px rgba(58, 58, 58, 0.3);
|
|
487
484
|
z-index: 5;
|
|
485
|
+
border-radius: 4px 0px 0px 4px;
|
|
486
|
+
overflow: hidden;
|
|
487
|
+
|
|
488
|
+
@media (max-width:1399px) {
|
|
489
|
+
bottom: 100px;
|
|
490
|
+
top: auto;
|
|
491
|
+
}
|
|
492
|
+
|
|
493
|
+
&__wrapper{
|
|
494
|
+
@media (max-width:1399px) {
|
|
495
|
+
transform:translateY(130%);
|
|
496
|
+
max-height: 0;
|
|
497
|
+
opacity: 0;
|
|
498
|
+
}
|
|
499
|
+
|
|
500
|
+
&.wrapper-open{
|
|
501
|
+
@media (max-width:1399px) {
|
|
502
|
+
transform:translateY(0px);
|
|
503
|
+
max-height: 300px;
|
|
504
|
+
opacity: 1;
|
|
505
|
+
transition: max-height 0.3s ease-out;
|
|
506
|
+
}
|
|
507
|
+
}
|
|
508
|
+
}
|
|
488
509
|
|
|
489
510
|
&__item {
|
|
490
|
-
padding:
|
|
511
|
+
padding: 16px;
|
|
491
512
|
position: relative;
|
|
492
513
|
border-bottom: 1px solid var(--Stroke);
|
|
493
514
|
cursor: pointer;
|
|
494
|
-
|
|
515
|
+
background: #fff;
|
|
516
|
+
display: flex;
|
|
517
|
+
align-items: center;
|
|
518
|
+
justify-content: center;
|
|
519
|
+
|
|
520
|
+
svg{
|
|
521
|
+
transition: all 0.3s;
|
|
522
|
+
}
|
|
495
523
|
|
|
496
524
|
&:last-child {
|
|
497
|
-
|
|
525
|
+
@media (min-width:1400px) {
|
|
526
|
+
border: none;
|
|
527
|
+
}
|
|
528
|
+
}
|
|
529
|
+
|
|
530
|
+
&.item-mobile{
|
|
531
|
+
@media (min-width:1400px) {
|
|
532
|
+
display: none;
|
|
533
|
+
}
|
|
498
534
|
}
|
|
499
535
|
|
|
500
536
|
mark {
|
|
501
537
|
position: absolute;
|
|
502
|
-
width:
|
|
503
|
-
height:
|
|
504
|
-
font-
|
|
538
|
+
width: 20px;
|
|
539
|
+
height: 20px;
|
|
540
|
+
font-weight: 700;
|
|
541
|
+
font-size: 11px;
|
|
542
|
+
line-height: 14px;
|
|
505
543
|
color: #fff;
|
|
506
|
-
line-height: 0;
|
|
507
544
|
display: flex;
|
|
508
545
|
align-items: center;
|
|
509
546
|
justify-content: center;
|
|
510
|
-
right:
|
|
511
|
-
bottom:
|
|
547
|
+
right: 12px;
|
|
548
|
+
bottom: 12px;
|
|
512
549
|
background: var(--Main2);
|
|
513
550
|
border-radius: 100%;
|
|
514
551
|
}
|
|
552
|
+
}
|
|
553
|
+
|
|
554
|
+
& > &__item{
|
|
555
|
+
&:last-child {
|
|
556
|
+
border: none;
|
|
557
|
+
}
|
|
515
558
|
}
|
|
516
559
|
}
|
package/package.json
CHANGED