mt-ui-components-vue3
Version:
玛果添实UI组件库(Vue3)
58 lines • 1.2 kB
JavaScript
import { createStyles } from 'antd-style';
var useStyles = createStyles(function () {
return {
noFound: {
width: '100%',
height: '100%',
minHeight: '760px',
minWidth: '1080px',
display: 'flex'
},
'noFound-img': {
flex: '0.6',
display: 'flex',
justifyContent: 'center',
alignItems: 'center',
img: {
width: '80%'
}
},
'noFound-content': {
flex: '0.4',
display: 'flex',
alignItems: 'center'
},
content: {
width: '60%',
height: '30%',
flexDirection: 'column',
img: {
width: '50%',
marginBottom: '20px'
},
button: {
marginRight: '12px'
}
},
title: {
fontStyle: 'normal',
fontWeight: '400',
fontSize: '36px',
lineHeight: '50px',
textAlign: 'justify',
color: '#333333',
marginBottom: '10px'
},
'sub-title': {
fontStyle: 'normal',
fontWeight: '400',
fontSize: '14px',
lineHeight: '21px',
color: '#999999',
textAlign: 'justify',
wordBreak: 'break-word',
marginBottom: '10px'
}
};
});
export default useStyles;