Skip to content

Commit ce612cc

Browse files
committed
cleanup
1 parent 9b5b489 commit ce612cc

File tree

2 files changed

+1
-232
lines changed

2 files changed

+1
-232
lines changed

css/nord.css

-231
This file was deleted.

src/css.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ pub async fn get(Path(name): Path<String>, State(state): State<super::SiteState>
6363
resp_header.insert("Content-Type", "text/css".parse().unwrap());
6464
resp_header.insert("Cache-Control", "max-age=86400".parse().unwrap());
6565
match name.replace(".css", "").as_str() {
66-
"main" => resp_body = make_css(vec!["nord", "pure-min", "main"], &state.css),
66+
"main" => resp_body = make_css(vec!["pure-min", "main"], &state.css),
6767
"home" => resp_body = make_css(vec!["grids-responsive-min", "home"], &state.css),
6868
// contact is currently not being used
6969
"contact" => resp_body = make_css(vec!["grids-responsive-min", "contact"], &state.css),

0 commit comments

Comments
 (0)