heroes-of-chess-components 0.5.79 → 0.5.80
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.
|
@@ -26,8 +26,8 @@ export const HBoxContainer = styled.div.withConfig({
|
|
|
26
26
|
background: ${({ theme, background }) =>
|
|
27
27
|
(background && theme?.[background]) || background || "transparent"};
|
|
28
28
|
transition: all 0.3s ease;
|
|
29
|
-
overflow-x: ${(props) => props.overflowX ?? "
|
|
30
|
-
overflow-y: ${(props) => props.overflowY ?? "
|
|
29
|
+
overflow-x: ${(props) => props.overflowX ?? "auto"};
|
|
30
|
+
overflow-y: ${(props) => props.overflowY ?? "auto"};
|
|
31
31
|
box-shadow: ${({ boxShadow, theme }) =>
|
|
32
32
|
(boxShadow && theme?.[boxShadow]) || boxShadow || "none"}; /* Sombra */
|
|
33
33
|
|
|
@@ -51,7 +51,7 @@ export type FlexDirectionType =
|
|
|
51
51
|
|
|
52
52
|
export type FlexWrapType = "nowrap" | "wrap" | "wrap-reverse";
|
|
53
53
|
|
|
54
|
-
export type OverflowType = "visible" | "hidden" | "scroll" | "auto"
|
|
54
|
+
export type OverflowType = "visible" | "hidden" | "scroll" | "auto";
|
|
55
55
|
|
|
56
56
|
export type PositionType =
|
|
57
57
|
| "static"
|