fui-fancyui
Version:
FancyUI Libary
18 lines (17 loc) • 344 B
JavaScript
import { styled as i } from "styled-components";
const e = i.div`
position: relative;
`, t = i.div`
position: absolute;
z-index: 1000;
`;
i.div`
position: fixed;
z-index: 100;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
display: ${(o) => o.$isVisible ? "block" : "none"};
`;
export {
t as ContentContainer,
e as RefContainer
};