@eclass/ui-kit 1.59.2 → 1.59.3
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/eclass-ui-kit.es.js
CHANGED
|
@@ -10880,29 +10880,34 @@ const UserDropdown = ({
|
|
|
10880
10880
|
left: isMobile ? "0 !important" : "auto",
|
|
10881
10881
|
position: isMobile ? "fixed !important" : "absolute",
|
|
10882
10882
|
top: isMobile ? "52px !important" : "auto",
|
|
10883
|
-
|
|
10883
|
+
bottom: isMobile ? "0 !important" : "auto",
|
|
10884
|
+
transform: isMobile ? "none !important" : "auto",
|
|
10885
|
+
width: isMobile ? "100% !important" : "auto"
|
|
10884
10886
|
},
|
|
10885
10887
|
".chakra-menu__menu-list": {
|
|
10886
10888
|
animation: "none !important",
|
|
10887
10889
|
background: vars("colors-neutral-davysGrey"),
|
|
10888
10890
|
borderRadius: isMobile ? "0" : "10px",
|
|
10889
10891
|
boxShadow: isMobile ? "none" : "rgba(47, 47, 47, 0.2) -1px 6px 40px 0px",
|
|
10890
|
-
|
|
10892
|
+
display: isMobile ? "flex" : "block",
|
|
10893
|
+
flexDirection: isMobile ? "column" : "initial",
|
|
10894
|
+
height: isMobile ? "100%" : "auto",
|
|
10895
|
+
maxHeight: isMobile ? "100%" : "auto",
|
|
10891
10896
|
opacity: "1 !important",
|
|
10892
10897
|
overflowY: isMobile ? "auto" : "hidden",
|
|
10893
10898
|
padding: "15px 0 0",
|
|
10894
10899
|
position: "absolute",
|
|
10895
10900
|
right: isMobile ? "auto" : "-8px",
|
|
10896
|
-
top: isMobile ? "
|
|
10901
|
+
top: isMobile ? "0 !important" : "auto",
|
|
10897
10902
|
transform: "none !important",
|
|
10898
10903
|
transition: "none !important",
|
|
10899
10904
|
width: isMobile ? "100vw" : "290px"
|
|
10900
10905
|
},
|
|
10901
10906
|
".content": {
|
|
10902
|
-
|
|
10907
|
+
flex: isMobile ? "1" : "auto",
|
|
10903
10908
|
borderRadius: !isMobile ? "10px" : "0",
|
|
10904
10909
|
bg: vars("colors-neutral-white"),
|
|
10905
|
-
">button, >
|
|
10910
|
+
">button, >a": {
|
|
10906
10911
|
borderBottom: isMobile ? `solid 1px ${vars("colors-neutral-platinum")}` : "none"
|
|
10907
10912
|
}
|
|
10908
10913
|
},
|