Redesign settings UI in plugin (#886)

This commit is contained in:
boatbomber
2024-05-13 10:36:03 -07:00
committed by GitHub
parent 2c46640105
commit 3d4e387d35
22 changed files with 141 additions and 48 deletions

View File

@@ -29,13 +29,13 @@ macro_rules! declare_asset {
declare_asset!(css, "../../assets/index.css");
pub fn logo() -> &'static [u8] {
static LOGO: &[u8] = include_bytes!("../../assets/logo-512.png");
static LOGO: &[u8] = include_bytes!("../../assets/brand_images/logo-512.png");
LOGO
}
pub fn icon() -> &'static [u8] {
static ICON: &[u8] = include_bytes!("../../assets/icon-32.png");
static ICON: &[u8] = include_bytes!("../../assets/brand_images/icon-32.png");
ICON
}