@reevit/react 0.5.0 → 0.5.1
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/README.md +1 -3
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +5 -5
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -5
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +15 -8
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -508,8 +508,9 @@
|
|
|
508
508
|
display: flex;
|
|
509
509
|
flex-direction: row;
|
|
510
510
|
align-items: center;
|
|
511
|
-
|
|
512
|
-
|
|
511
|
+
justify-content: flex-start;
|
|
512
|
+
gap: 16px;
|
|
513
|
+
padding: 16px 18px;
|
|
513
514
|
background: transparent;
|
|
514
515
|
border: none;
|
|
515
516
|
border-bottom: 1px solid var(--reevit-border);
|
|
@@ -536,8 +537,8 @@
|
|
|
536
537
|
.reevit-method-option--list .reevit-method-option__icon-wrapper {
|
|
537
538
|
display: flex;
|
|
538
539
|
align-items: center;
|
|
539
|
-
justify-content:
|
|
540
|
-
width:
|
|
540
|
+
justify-content: flex-start;
|
|
541
|
+
min-width: fit-content;
|
|
541
542
|
height: 40px;
|
|
542
543
|
background: transparent;
|
|
543
544
|
flex-shrink: 0;
|
|
@@ -547,6 +548,9 @@
|
|
|
547
548
|
.reevit-method-option--list .reevit-method-option__content {
|
|
548
549
|
flex: 1;
|
|
549
550
|
min-width: 0;
|
|
551
|
+
display: flex;
|
|
552
|
+
flex-direction: column;
|
|
553
|
+
align-items: flex-start;
|
|
550
554
|
}
|
|
551
555
|
|
|
552
556
|
.reevit-method-option--list .reevit-method-option__label {
|
|
@@ -577,14 +581,17 @@
|
|
|
577
581
|
.reevit-method-option__logos {
|
|
578
582
|
display: flex;
|
|
579
583
|
align-items: center;
|
|
580
|
-
gap:
|
|
584
|
+
gap: 6px;
|
|
581
585
|
}
|
|
582
586
|
|
|
583
587
|
.reevit-method-option__logo-img {
|
|
584
|
-
width:
|
|
585
|
-
height:
|
|
588
|
+
width: 36px;
|
|
589
|
+
height: 36px;
|
|
586
590
|
object-fit: contain;
|
|
587
|
-
border-radius:
|
|
591
|
+
border-radius: 6px;
|
|
592
|
+
background: #f8fafc;
|
|
593
|
+
padding: 4px;
|
|
594
|
+
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
|
|
588
595
|
}
|
|
589
596
|
|
|
590
597
|
.reevit-method-option--grid .reevit-method-option__logos {
|