💄 adjust table width to fit 320px

This commit is contained in:
ghalestrilo 2020-08-03 18:14:40 -03:00
parent fe9f35afab
commit b498baab28
1 changed files with 10 additions and 3 deletions

View File

@ -9,10 +9,17 @@ export default styled.div`
.sketch-list__sort-button { padding: 0 }
td { font-size: ${remSize(10)} };
th {
td {
font-size: ${remSize(10)};
min-width: ${remSize(72)};
};
tbody th {
flex-direction: row;
font-size: ${remSize(14)};
/* font-weight: bold; */
max-width: ${remSize(140)}
/* width: 100%; */
max-width: ${remSize(140)};
};
td.sketch-list__dropdown-column { min-width: unset; }
`;