forked from linode/manager
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathImagesTable.styles.ts
More file actions
34 lines (30 loc) · 1013 Bytes
/
Copy pathImagesTable.styles.ts
File metadata and controls
34 lines (30 loc) · 1013 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import { Box, Paper, Typography } from '@linode/ui';
import { styled } from '@mui/material/styles';
export const StyledImageContainer = styled(Paper, {
label: 'StyledImageContainer',
})(({ theme }) => ({
border: `1px solid ${theme.tokens.alias.Border.Normal}`,
marginBottom: theme.spacingFunction(24),
padding: 0,
}));
export const StyledImageTableHeader = styled(Box, {
label: 'StyledImageTableHeader',
})(({ theme }) => ({
padding: `${theme.spacingFunction(16)} ${theme.spacingFunction(24)} 0`,
}));
export const StyledImageTableSubheader = styled(Typography, {
label: 'StyledImageTableSubheader',
})(({ theme }) => ({
marginTop: theme.spacingFunction(8),
}));
export const StyledImageTableContainer = styled(Box, {
label: 'StyledImageTableContainer',
})(({ theme }) => ({
padding: `${theme.spacingFunction(16)} ${theme.spacingFunction(24)} ${theme.spacingFunction(24)}`,
'& .MuiTable-root': {
border: 'none',
},
'& [data-qa-table-pagination]': {
border: 'none',
},
}));