Skip to content

Commit

Permalink
Set alert_view action button visibility to false and update border-ra…
Browse files Browse the repository at this point in the history
…dius in CSS

- Set `alert_view.action_button.visible` to `false` in `CategoryView.vala`.
- Update `border-radius` from `12px` to `24px` in `style.css`.
  • Loading branch information
lainsce committed Sep 12, 2024
1 parent bef5050 commit a3ff800
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion data/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ spinbutton.flat {
font-weight: 900;
color: #fff;
background: alpha(@scrim, 0.32);
border-radius: 12px;
border-radius: 24px;
font-feature-settings: 'tnum' 1;
}

Expand Down
1 change: 1 addition & 0 deletions src/CategoryView.vala
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ namespace Fusebox {

construct {
alert_view = new He.EmptyPage ();
alert_view.action_button.visible = false;

category = new Fusebox.Category ();

Expand Down

0 comments on commit a3ff800

Please sign in to comment.