mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-03 10:49:32 +02:00
8 lines
383 B
Bash
Executable file
8 lines
383 B
Bash
Executable file
#!/bin/bash -eux
|
|
|
|
find node_modules/fomantic-ui-css/components -name "*.min.css" -delete
|
|
mkdir -p node_modules/fomantic-ui-css/tweaked
|
|
echo 'Removing google font…'
|
|
sed -i '/@import url(/d' node_modules/fomantic-ui-css/components/site.css
|
|
echo "Replacing hardcoded values by CSS vars…"
|
|
scripts/fix-fomantic-css.py node_modules/fomantic-ui-css node_modules/fomantic-ui-css/tweaked
|