@wulperstudio/cms
Version:
Wulper Studio Library Components CMS
16 lines • 352 B
JavaScript
import styled from '@emotion/styled';
export var Wrapper = styled('div')({
height: '100%',
maxHeight: '100%',
overflowY: 'auto',
paddingBottom: 0,
userSelect: 'none'
});
export var WrapperInner = styled('div')({
height: '100%',
maxHeight: '100%',
overflowY: 'auto',
display: 'flex',
flexDirection: 'column',
minHeight: '100px'
});