mirror of
https://github.com/hrfee/jellyfin-accounts.git
synced 2024-11-14 18:30:12 +00:00
Harvey Tindall
ade935da4e
Now uses a customized bootstrap that looks something like Jellyfin. Some small ui changes were needed. This be overridden by downloading bs5's css and using the custom_css option if you don't like it. sass file is included for your own modification. Changes made to master have been added also.
11 lines
401 B
Bash
Executable File
11 lines
401 B
Bash
Executable File
#!/bin/bash
|
|
css_file=$(echo $1 | sed 's/scss/css/g')
|
|
min_file=$(echo $1 | sed 's/scss/min.css/g')
|
|
sassc -t expanded -p 6 $1 $css_file
|
|
echo "Compiled."
|
|
postcss $css_file --replace --use autoprefixer
|
|
echo "Prefixed."
|
|
echo "Written to $css_file."
|
|
cleancss --level 1 --format breakWith=lf --source-map --source-map-inline-sources --output $min_file $css_file
|
|
echo "Minified version written to $min_file."
|