Change the default font + other little things
This commit is contained in:
parent
dcf7523ccf
commit
3ebbe8172b
16 changed files with 48 additions and 28 deletions
11
backend/build.rs
Normal file
11
backend/build.rs
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
use std::process::Command;
|
||||
|
||||
fn main() {
|
||||
println!("cargo:rerun-if-changed=style.scss");
|
||||
|
||||
Command::new("sass")
|
||||
.arg("./style.scss")
|
||||
.arg("./static/style.css")
|
||||
.output()
|
||||
.expect("Unable to compile SASS file, install SASS, see https://sass-lang.com/");
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue