From 76f9204417008f8c2f38c77bbfa4866c3f3a7a40 Mon Sep 17 00:00:00 2001 From: Ian Oxley Date: Tue, 18 Dec 2018 15:31:45 +0000 Subject: [PATCH] Update CSS to fix notification layout Set `.row` inside a `.notification` to use `width: 100%`, and set margin to zero. --- website/client/components/snackbars/notification.vue | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/website/client/components/snackbars/notification.vue b/website/client/components/snackbars/notification.vue index 918f6b226e..66ff16e44e 100644 --- a/website/client/components/snackbars/notification.vue +++ b/website/client/components/snackbars/notification.vue @@ -40,6 +40,11 @@ transition(name="fade") width: 300px; margin-left: 1em; margin-bottom: 1em; + + .row { + margin: 0; + width: 100%; + } } .info {