mirror of
https://github.com/prometheus/alertmanager.git
synced 2026-02-05 15:45:34 +01:00
* Create Mantine UI scaffold
Scaffolds out a new UI based on Mantine. This is based on the Mantine/Vite template [1] and adapted to more closely match the prometheus 3.X UI.
[1] 30c8bb405f
Signed-off-by: Joe Adams <github@joeadams.io>
* Adjust directory for GA mantine
Signed-off-by: Joe Adams <github@joeadams.io>
---------
Signed-off-by: Joe Adams <github@joeadams.io>
15 lines
343 B
JavaScript
15 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',
|
|
},
|
|
},
|
|
},
|
|
};
|