1
0
mirror of https://github.com/prometheus/alertmanager.git synced 2026-02-05 15:45:34 +01:00
Files
alertmanager/ui/mantine-ui/postcss.config.cjs
Joe Adams 0c90033a28 Create Mantine UI scaffold (#4506)
* 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>
2025-10-21 21:53:55 -04:00

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',
},
},
},
};