From 3b125d9cfc322685abd5a756bb5f25e08dade653 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javi=20Mart=C3=ADn?= Date: Mon, 30 Jan 2023 15:43:51 +0100 Subject: [PATCH] Simplify styles for the remote translations button We can use the `link` mixin. Note this mixin uses anchor-color instead of brand-color; by default, they're both the same, so we probably meant anchor-color here. --- .../stylesheets/layout/remote_translations_button.scss | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/app/assets/stylesheets/layout/remote_translations_button.scss b/app/assets/stylesheets/layout/remote_translations_button.scss index 9af0e765c..5e796f274 100644 --- a/app/assets/stylesheets/layout/remote_translations_button.scss +++ b/app/assets/stylesheets/layout/remote_translations_button.scss @@ -5,14 +5,9 @@ padding: rem-calc(6); [type="submit"] { - @include brand-color; + @include link; background: none; border: 0; - cursor: pointer; font-weight: bold; - - &:hover { - text-decoration: underline; - } } }