fui-fancyui
Version:
FancyUI Libary
27 lines (25 loc) • 463 B
JavaScript
import { styled as e } from "styled-components";
const i = e.div`
width: 100%;
display: inline-block;
min-height: 300px;
position: relative;
overflow-y: auto;
flex: 1;
`, l = e.div`
width: 100%;
overflow: hidden;
&::-webkit-scrollbar {
display: none;
-ms-overflow-style: none;
scrollbar-width: none;
}
`;
e.div`
display: grid;
grid-template-columns: repeat(7, 1fr);
`;
export {
i as MonthContainer,
l as StyledCalendar
};