pinakes-ui: get rid of the build wrapper; let Dioxus compile its own stylesheets

Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: I8e83a7d9e592b0770b22c5832da6a5586a6a6964
This commit is contained in:
raf 2026-03-22 21:54:18 +03:00
commit ede8a26e59
Signed by: NotAShelf
GPG key ID: 29D95B64378DB4BF
4 changed files with 2 additions and 39 deletions

View file

@ -1,8 +1,7 @@
//! Styles module for Pinakes UI
//!
//! Exports the CSS asset for use with Dioxus.
//! SCSS files are compiled to CSS via build.rs.
//! Exports the SCSS asset for use with Dioxus.
use dioxus::prelude::*;
pub static STYLES: Asset = asset!("/assets/css/main.css");
pub static STYLES: Asset = asset!("/assets/styles/main.scss");