From 678934cf49d76008b786ef8290c7c5128df8c13d Mon Sep 17 00:00:00 2001 From: Tom Byers Date: Fri, 2 Oct 2020 14:56:49 +0100 Subject: [PATCH] Fix copy-to-clipboard button CSS In a lot of browsers, the static position is 0px anyway so there's no problem. In IE11, the button sits to the left of the paragraph above by default. Setting it in the CSS fixes the issue. --- app/assets/stylesheets/components/api-key.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/app/assets/stylesheets/components/api-key.scss b/app/assets/stylesheets/components/api-key.scss index b481c9558..8ea44a3f1 100644 --- a/app/assets/stylesheets/components/api-key.scss +++ b/app/assets/stylesheets/components/api-key.scss @@ -22,6 +22,7 @@ position: absolute; bottom: 2px; + left: 0px; &:active { top: auto;