contiago-toolbar
Version:
One of the options for outputting content from contiago xml-server
27 lines (25 loc) • 468 B
JavaScript
import styled from 'styled-components';
export default styled.div `{
${(props) => props.min ? `
position: static;
padding: 3.5vw 0;
` : `
z-index: 1000;
overflow: auto;
left: 0;
top: 0;
position: fixed;
`}
display: flex;
justify-content: center;
align-items:center;
width: 100%;
height: 100%;
& > :first-child {
height: 7vw !important;
width: 7vw !important;
}
& :nth-child(n) {
border-width: 0.5vw !important;
}
}`;