fui-fancyui
Version:
FancyUI Libary
28 lines (25 loc) • 523 B
JavaScript
import { styled as t } from "styled-components";
const i = t.div`
position: relative;
display: flex;
width: 100%;
height: auto;
justify-content: space-around;
align-items: stretch;
button:nth-child(1) {
border-radius: 50px 0 0 50px;
}
button:nth-child(3) {
border-radius: 0 50px 50px 0;
}
`, o = t.div`
position: absolute;
height: 100%;
flex: 1;
display: flex;
align-items: center; // this center the FancyVR vertically
`;
export {
i as StyledDateOutputFromTo,
o as VRWrapper
};