From 07ecd824ea5ce73a672a890ef114cab6536441ee Mon Sep 17 00:00:00 2001 From: Qstick Date: Sun, 4 Aug 2019 22:25:33 -0400 Subject: [PATCH] Fixed: Tags in settings getting cutoff Co-Authored-By: Mark McDowall --- frontend/src/Settings/Tags/Tag.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/Settings/Tags/Tag.css b/frontend/src/Settings/Tags/Tag.css index 129c44203..ebf61e539 100644 --- a/frontend/src/Settings/Tags/Tag.css +++ b/frontend/src/Settings/Tags/Tag.css @@ -1,11 +1,12 @@ .tag { composes: card from '~Components/Card.css'; - width: 150px; + flex: 150px 0 1; } .label { margin-bottom: 20px; + white-space: nowrap; font-weight: 300; font-size: 24px; }