mirror of
https://github.com/hyperdxio/hyperdx
synced 2026-04-21 21:37:41 +00:00
really like the fact they moved away from css-in-js haha ``` Stack/Group spacing => gap Stack/Group position => justify Button compact prop => size Button, Input, etc icon/leftIcon prop => leftSection sx prop => style Table thead/tbody/tr/td => <Table.Thead> / <Table.Tbody> / <Table.Tr> / <Table.Td> Badge - set variant="light" prop ``` To do: - [x] Tables - [x] Update all Badge variant to light more testing won't hurt :D
14 lines
343 B
JavaScript
14 lines
343 B
JavaScript
module.exports = {
|
|
plugins: {
|
|
'postcss-preset-mantine': {},
|
|
'postcss-simple-vars': {
|
|
variables: {
|
|
'mantine-breakpoint-xs': '36em',
|
|
'mantine-breakpoint-sm': '48em',
|
|
'mantine-breakpoint-md': '62em',
|
|
'mantine-breakpoint-lg': '75em',
|
|
'mantine-breakpoint-xl': '88em',
|
|
},
|
|
},
|
|
},
|
|
};
|