@eturnity/eturnity_reusable_components 9.10.5 → 9.13.0
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
|
@@ -432,11 +432,7 @@
|
|
|
432
432
|
const SelectDropdown = styled('div', selectDropdownAttrs)`
|
|
433
433
|
box-sizing: border-box;
|
|
434
434
|
z-index: ${(props) =>
|
|
435
|
-
props.isActive
|
|
436
|
-
? props.isParentModal
|
|
437
|
-
? '9999999'
|
|
438
|
-
: '99999'
|
|
439
|
-
: '9999999999'};
|
|
435
|
+
props.isActive ? '2' : props.isParentModal ? '9999999' : '99999'};
|
|
440
436
|
position: ${(props) =>
|
|
441
437
|
props.isFixedDropdownPosition ? 'fixed' : 'absolute'};
|
|
442
438
|
top: ${(props) => (props.isTeleport ? '0px' : '4px')};
|
|
@@ -28,11 +28,15 @@
|
|
|
28
28
|
font-style: normal;
|
|
29
29
|
font-weight: 700;
|
|
30
30
|
line-height: 120%;
|
|
31
|
-
|
|
31
|
+
&::first-letter {
|
|
32
|
+
text-transform: uppercase;
|
|
33
|
+
}
|
|
32
34
|
`
|
|
33
35
|
const ButtonContainer = styled.div`
|
|
34
36
|
display: inline-flex;
|
|
35
|
-
|
|
37
|
+
justify-content: flex-end;
|
|
38
|
+
align-items: center;
|
|
39
|
+
width: 100%;
|
|
36
40
|
gap: 20px;
|
|
37
41
|
`
|
|
38
42
|
const TextContainer = styled.div`
|