2020-07-28 14:33:38 +00:00
|
|
|
import React from 'react';
|
|
|
|
import styled from 'styled-components';
|
|
|
|
import { remSize } from '../../theme';
|
|
|
|
|
|
|
|
|
|
|
|
export default styled.div`
|
|
|
|
z-index: 0;
|
2020-07-28 20:46:22 +00:00
|
|
|
margin-top: ${props => remSize(props.slimheader ? 50 : 68)};
|
2020-08-03 20:35:44 +00:00
|
|
|
|
|
|
|
.sketch-list__sort-button { padding: 0 }
|
|
|
|
|
2020-08-03 21:14:40 +00:00
|
|
|
td {
|
|
|
|
font-size: ${remSize(10)};
|
|
|
|
min-width: ${remSize(72)};
|
|
|
|
};
|
|
|
|
tbody th {
|
|
|
|
flex-direction: row;
|
2020-08-03 20:35:44 +00:00
|
|
|
font-size: ${remSize(14)};
|
|
|
|
/* font-weight: bold; */
|
2020-08-03 21:14:40 +00:00
|
|
|
/* width: 100%; */
|
|
|
|
max-width: ${remSize(140)};
|
|
|
|
|
2020-08-03 20:35:44 +00:00
|
|
|
};
|
2020-08-03 21:14:40 +00:00
|
|
|
td.sketch-list__dropdown-column { min-width: unset; }
|
2020-07-28 14:33:38 +00:00
|
|
|
`;
|