From 06f157e634ff6eeeff56f796df835c2d34745370 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Wed, 24 Jul 2019 19:59:27 -0700 Subject: [PATCH] Fixed: Tags in settings getting cutoff --- 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; }