diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/main.rs | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs index 59b4bc0..9f531ea 100644 --- a/src/main.rs +++ b/src/main.rs @@ -17,10 +17,15 @@ fn main() { relm4_icons::initialize_icons(bowl::icons::GRESOURCE_BYTES, bowl::icons::RESOURCE_PREFIX); let app = relm4::RelmApp::new(bowl::APPLICATION_ID); - relm4::set_global_css(".tag-pill button { + relm4::set_global_css("/* CSS for Bowl */ +.tag-pill button { min-height: 30px; min-width: 30px; -}"); +} +.tag-pill label { + font-variant-caps: small-caps; +} +"); app.run_async::<bowl::App>(()); } |