Use a blue button for the admin CTA

This commit is contained in:
gregoirenovel 2018-08-27 10:58:08 +02:00
parent d240be8948
commit 40da6ccf40
2 changed files with 11 additions and 6 deletions

View file

@ -353,18 +353,23 @@ $cta-panel-button-border-size: 2px;
}
}
.cta-panel-button-black {
.cta-panel-button-blue {
@include cta-panel-button;
border: $cta-panel-button-border-size solid #000000;
color: #000000;
border: $cta-panel-button-border-size solid $light-blue;
color: $light-blue;
&:hover {
color: #FFFFFF;
background-color: $light-blue;
text-decoration: none;
background-color: #F8F8F8;
&:focus {
color: #FFFFFF;
}
}
&:focus {
color: #000000;
color: $light-blue;
text-decoration: none;
}
}

View file

@ -85,4 +85,4 @@
%div
= link_to "Découvrez notre outil",
administration_path,
class: "cta-panel-button-black"
class: "cta-panel-button-blue"