about summary refs log tree commit diff
path: root/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 0df5e5d..c32137b 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -273,6 +273,10 @@ where
             "/.kittybox/static/{*path}",
             axum::routing::get(crate::frontend::statics),
         )
+        .route(
+            "/.kittybox/custom_style.css",
+            get(crate::frontend::custom_css::<S>),
+        )
         .route("/.kittybox/coffee", get(teapot_route))
         .nest(
             "/.kittybox/micropub/client",