From 0a95c3aaacc695b25feb443ac4246b60b75961be Mon Sep 17 00:00:00 2001 From: Anthony Kinsey Date: Thu, 2 Dec 2021 12:03:48 -1000 Subject: [PATCH] fix: issue with mobile button spacing, and button changing size when focused --- src/views/Boards.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/views/Boards.vue b/src/views/Boards.vue index 6eb18d48..516bb811 100644 --- a/src/views/Boards.vue +++ b/src/views/Boards.vue @@ -344,10 +344,11 @@ img.avatar-small { .button, .button:focus { margin: 0 1rem; min-width: 160px; + &:last-child { margin-left: 0; } } @include break-mobile-sm { - .button { + .button, .button:focus { font-size: $font-size-sm; } }