👌 restore sidebar
This commit is contained in:
parent
19bff74ad6
commit
a28a4a5c83
1 changed files with 11 additions and 6 deletions
|
@ -49,13 +49,15 @@ const ContentWrapper = styled(Content)`
|
||||||
color: ${prop('primaryTextColor')}
|
color: ${prop('primaryTextColor')}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
thead th svg { margin-left: ${remSize(8)} }
|
thead th svg { margin-left: ${remSize(8)} }
|
||||||
|
|
||||||
tbody td:first-child { justify-self: start; text-align: start; };
|
|
||||||
tbody td { justify-self: center; }
|
tbody td { justify-self: start; text-align: start; padding: 0 }
|
||||||
|
tbody td:nth-child(2) { justify-self: start; text-align: start; padding-left: ${remSize(12)}};
|
||||||
tbody td:last-child { justify-self: end; text-align: end; };
|
tbody td:last-child { justify-self: end; text-align: end; };
|
||||||
|
|
||||||
.sketches-table .sketch-list__dropdown-column { min-width: unset };
|
.sketch-list__dropdown-column { width: auto; };
|
||||||
|
|
||||||
tbody { height: ${remSize(48)}; }
|
tbody { height: ${remSize(48)}; }
|
||||||
|
|
||||||
|
@ -64,9 +66,12 @@ const ContentWrapper = styled(Content)`
|
||||||
background: ${prop('SketchList.background')};
|
background: ${prop('SketchList.background')};
|
||||||
}
|
}
|
||||||
.sketches-table__row {
|
.sketches-table__row {
|
||||||
background: ${prop('SketchList.card.background')} !important; height: auto
|
background: ${prop('SketchList.card.background')} !important;
|
||||||
|
height: auto
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
tr {
|
tr {
|
||||||
align-self: start;
|
align-self: start;
|
||||||
display: grid;
|
display: grid;
|
||||||
|
@ -80,7 +85,7 @@ const ContentWrapper = styled(Content)`
|
||||||
tbody tr {
|
tbody tr {
|
||||||
padding: ${remSize(8)};
|
padding: ${remSize(8)};
|
||||||
border-radius: ${remSize(4)};
|
border-radius: ${remSize(4)};
|
||||||
grid-template-columns: 5fr 5fr 2fr;
|
grid-template-columns: 5fr 5fr 1fr;
|
||||||
grid-template-areas: "name name name" "content content content";
|
grid-template-areas: "name name name" "content content content";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue