style: Use unlinked rounded buttons for notifications

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3427>
This commit is contained in:
Sam Hewitt
2024-06-18 15:03:19 -02:30
parent ff4b9fdb08
commit a32f735ec0
4 changed files with 22 additions and 45 deletions

View File

@ -56,7 +56,10 @@ class Dialog extends St.Widget {
this._dialog.add_child(this.contentLayout);
this.buttonLayout = new St.Widget({
layout_manager: new Clutter.BoxLayout({homogeneous: true}),
layout_manager: new Clutter.BoxLayout({
spacing: 12,
homogeneous: true,
}),
});
this._dialog.add_child(this.buttonLayout);
}