From 4cadc55733ac8f49487e8ae3f157db784fc8ad5c Mon Sep 17 00:00:00 2001 From: chrisgarrity <chrisg@media.mit.edu> Date: Tue, 7 Aug 2018 15:50:07 -0400 Subject: [PATCH] Fix modal help button padding --- src/components/modal/modal.css | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/components/modal/modal.css b/src/components/modal/modal.css index e36e472ed..1bb4f1963 100644 --- a/src/components/modal/modal.css +++ b/src/components/modal/modal.css @@ -154,6 +154,13 @@ $sides: 20rem; .help-button { font-weight: normal; - padding-right: 0; font-size: 0.75rem; } + +[dir="ltr"] .help-button { + padding-right: 0; +} + +[dir="rtl"] .help-button { + padding-left: 0; +} -- GitLab