aboutsummaryrefslogtreecommitdiff
path: root/ui/client-style/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'ui/client-style/src/lib.rs')
-rw-r--r--ui/client-style/src/lib.rs10
1 files changed, 10 insertions, 0 deletions
diff --git a/ui/client-style/src/lib.rs b/ui/client-style/src/lib.rs
new file mode 100644
index 0000000..06ddce4
--- /dev/null
+++ b/ui/client-style/src/lib.rs
@@ -0,0 +1,10 @@
+/*
+ This file is part of jellything (https://codeberg.org/metamuffin/jellything)
+ which is licensed under the GNU Affero General Public License (version 3); see /COPYING.
+ Copyright (C) 2026 metamuffin <metamuffin.org>
+*/
+use std::borrow::Cow;
+
+pub fn css_bundle() -> Cow<'static, str> {
+ include_str!(concat!(env!("OUT_DIR"), "/bundle.css")).into()
+}