@@ -20,6 +20,7 @@ import useAsModal from '../../components/useAsModal';
20
20
import Dropdown from '../../components/Dropdown' ;
21
21
import FooterTabSwitcher from '../../components/mobile/TabSwitcher' ;
22
22
import FooterTab from '../../components/mobile/Tab' ;
23
+ import Loader from '../App/components/loader' ;
23
24
24
25
const EXAMPLE_USERNAME = 'p5' ;
25
26
@@ -53,7 +54,6 @@ const ContentWrapper = styled(Content)`
53
54
tbody td { justify-self: center; padding-left: ${ remSize ( 12 ) } }
54
55
55
56
thead th svg { margin-left: ${ remSize ( 8 ) } }
56
-
57
57
58
58
tbody td:last-child { justify-self: end; text-align: end; };
59
59
.sketches-table .sketch-list__dropdown-column { min-width: unset };
@@ -71,15 +71,21 @@ const ContentWrapper = styled(Content)`
71
71
tr {
72
72
align-self: start;
73
73
display: grid;
74
- grid-template-columns: 5fr 5fr 2fr;
75
- grid-template-areas: "name name name" "content content content";
76
-
77
74
box-shadow: 0 0 18px 0 ${ prop ( 'shadowColor' ) } ;
78
75
};
79
76
80
- thead tr { grid-template-columns: auto ${ remSize ( 100 ) } ${ remSize ( 100 ) } 0fr; }
77
+ thead tr {
78
+ grid-template-columns: auto ${ remSize ( 100 ) } ${ remSize ( 100 ) } 0fr;
79
+ }
80
+
81
+ tbody tr {
82
+ padding: ${ remSize ( 8 ) } ;
83
+ border-radius: ${ remSize ( 4 ) } ;
84
+ grid-template-columns: 5fr 5fr 2fr;
85
+ grid-template-areas: "name name name" "content content content";
86
+ }
81
87
82
- tbody tr { padding: ${ remSize ( 8 ) } ; border-radius: ${ remSize ( 4 ) } ; }
88
+ .loader-container { position: fixed ; padding-bottom: 32% }
83
89
` ;
84
90
85
91
const Subheader = styled . div `
0 commit comments