@icedesign/algorithm-model-admin-scaffold
Version:
该模板适用于数据模型类的管理类后台,内置通用的介绍页和丰富的区块,使用时需要根据需求进行删除和添加
48 lines (45 loc) • 925 B
JSX
import React from 'react';
export default () => {
return (
<div style={styles.footer}>
<div style={styles.links}>
<a href="#" style={styles.link}>
帮助
</a>
<a href="#" style={styles.link}>
隐私
</a>
<a href="#" style={{ ...styles.link, marginRight: '0' }}>
条款
</a>
</div>
<div style={styles.copyright}>阿里巴巴集团 © 2018 版权所有</div>
</div>
);
};
const styles = {
footer: {
display: 'flex',
flexDirection: 'column',
alignItems: 'center',
justifyContent: 'center',
position: 'fixed',
left: '0',
right: '0',
bottom: '20px',
},
links: {
marginBottom: '8px',
},
link: {
fontSize: '13px',
marginRight: '40px',
color: '#fff',
},
copyright: {
fontSize: '13px',
color: '#fff',
lineHeight: 1.5,
textAlign: 'right',
},
};