File tree Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -44,9 +44,8 @@ export const SyntaxHighlighter: FC<SyntaxHighlighterProps> = ({
44
44
return (
45
45
< div
46
46
data-chromatic = "ignore"
47
- css = { {
48
- padding : "8px 0" ,
49
- height : "100%" ,
47
+ className = "px-2 py-0 h-full"
48
+ style = { {
50
49
backgroundColor : theme . monaco . colors [ "editor.background" ] ,
51
50
} }
52
51
>
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ type TableEmptyProps = EmptyStateProps;
11
11
export const TableEmpty : FC < TableEmptyProps > = ( props ) => {
12
12
return (
13
13
< TableRow >
14
- < TableCell colSpan = { 999 } css = { { padding : "0 !important" } } >
14
+ < TableCell colSpan = { 999 } className = "!p-0" >
15
15
< EmptyState { ...props } />
16
16
</ TableCell >
17
17
</ TableRow >
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import { Loader } from "../Loader/Loader";
6
6
export const TableLoader : FC = ( ) => {
7
7
return (
8
8
< TableRow >
9
- < TableCell colSpan = { 999 } css = { { textAlign : " center", height : 160 } } >
9
+ < TableCell colSpan = { 999 } className = "h-40 text- center">
10
10
< Loader />
11
11
</ TableCell >
12
12
</ TableRow >
You can’t perform that action at this time.
0 commit comments