From 4e58f7262a6b121fdf1439aba837aea274385bb4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Xavier=20Juli=C3=A1n?= Date: Thu, 29 Oct 2015 08:15:50 +0100 Subject: [PATCH] Set default width to fix IE11 compatibility --- app/styles/components/track-btn.scss | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/app/styles/components/track-btn.scss b/app/styles/components/track-btn.scss index a03e694b..7cfb360b 100644 --- a/app/styles/components/track-btn.scss +++ b/app/styles/components/track-btn.scss @@ -15,10 +15,11 @@ align-items: stretch; background: $whitish; border-radius: 4px 0 0 4px; - display: inline-flex; + display: flex; flex: 1; + flex-basis: 140px; margin-right: .1rem; - width: 140px; + min-width: 140px; &:hover { background: darken($whitish, 5%); transition: background .3s; @@ -26,6 +27,11 @@ span { align-self: center; } + .icon-arrow-up { + margin-left: auto; + padding: 0 .5rem; + transform: rotate(180deg); + } } &:hover { color: $blackish;