From a06ceeb31e58ab2999eac2979de311c9513b3fef Mon Sep 17 00:00:00 2001 From: Qstick Date: Sun, 13 Dec 2020 01:21:29 -0500 Subject: [PATCH] Fixed: Artist/Album navigation buttons hidden with some titles Co-Authored-By: Mark McDowall Signed-off-by: Robin Dadswell --- frontend/src/Author/Details/AuthorDetails.css | 9 ++++----- frontend/src/Book/Details/BookDetails.css | 3 +++ 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/frontend/src/Author/Details/AuthorDetails.css b/frontend/src/Author/Details/AuthorDetails.css index a66f73216..d5e2aaf30 100644 --- a/frontend/src/Author/Details/AuthorDetails.css +++ b/frontend/src/Author/Details/AuthorDetails.css @@ -59,6 +59,7 @@ } .titleRow { + position: relative; display: flex; justify-content: space-between; flex: 0 0 auto; @@ -95,11 +96,9 @@ margin-left: 20px; } -.filterIcon { - float: right; -} - -.authorNavigationButtons { +.artistNavigationButtons { + position: absolute; + right: 0; white-space: nowrap; } diff --git a/frontend/src/Book/Details/BookDetails.css b/frontend/src/Book/Details/BookDetails.css index cfce6f02a..c388a96a8 100644 --- a/frontend/src/Book/Details/BookDetails.css +++ b/frontend/src/Book/Details/BookDetails.css @@ -46,6 +46,7 @@ } .titleRow { + position: relative; display: flex; justify-content: space-between; flex: 0 0 auto; @@ -83,6 +84,8 @@ } .bookNavigationButtons { + position: absolute; + right: 0; white-space: nowrap; }