mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-15 01:48:16 -07:00
Fix CSS fallback
Turn off `mergeLonghand` because it combines `padding-*`, breaking fallback styles.
This commit is contained in:
parent
82db69c378
commit
2c31a55b08
10
cssnano.config.js
Normal file
10
cssnano.config.js
Normal file
@ -0,0 +1,10 @@
|
||||
module.exports = {
|
||||
preset: [
|
||||
'default',
|
||||
// Turn off `mergeLonghand` because it combines `padding-*` and `margin-*`,
|
||||
// breaking fallback styles.
|
||||
// https://github.com/cssnano/cssnano/issues/1163
|
||||
// https://github.com/cssnano/cssnano/issues/1192
|
||||
{ mergeLonghand: false }
|
||||
]
|
||||
};
|
Loading…
Reference in New Issue
Block a user