Signed-off-by: NotAShelf <raf@notashelf.dev> Change-Id: If8fe8b38c1d9c4fecd40ff71f88d2ae06a6a6964
8 lines
218 B
Rust
8 lines
218 B
Rust
//! Styles module for Pinakes UI
|
|
//!
|
|
//! Exports the CSS asset for use with Dioxus.
|
|
//! SCSS files are compiled to CSS via build.rs.
|
|
|
|
use dioxus::prelude::*;
|
|
|
|
pub static STYLES: Asset = asset!("/assets/css/main.css");
|