Change the default font + other little things

This commit is contained in:
Greg Burri 2020-05-12 23:14:42 +02:00
parent dcf7523ccf
commit 3ebbe8172b
16 changed files with 48 additions and 28 deletions

11
backend/build.rs Normal file
View 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/");
}