doly
Version:
doly ui components
45 lines (39 loc) • 962 B
JavaScript
import {createGlobalStyle} from 'styled-components'
const GlobalStyle = createGlobalStyle`
body{
background: #f5f5f5;
}
blockquote{
font-size: 12px;
color: #999;
}
table{
border-collapse: collapse;
border-spacing: 0;
empty-cells: show;
border: 1px solid #ebedf0;
width: 100%;
margin: 8px 0 16px;
font-size: 14px;
line-height: 1.5;
color: #314659;
background: #fff;
th, td{
border: 1px solid #ebedf0;
padding: 16px 24px;
text-align: left;
}
th{
white-space: nowrap;
color: #5c6b77;
font-weight: 500;
background: rgba(0,0,0,.02);
}
td{
font-weight: 500;
width: 20%;
font-family: Lucida Console,Consolas,Menlo,Courier,monospace;
}
}
`;
export default GlobalStyle;