scss: use common button style (#46174)

This commit is contained in:
Serghei Mihai 2020-09-02 10:10:58 +02:00
parent c41a51e40e
commit 3b7fe1611c
3 changed files with 5 additions and 5 deletions

View File

@ -10,7 +10,7 @@ body {
}
a.button {
@include button;
@extend %button;
}
a.support-link {
@ -998,7 +998,7 @@ div.cut-edit {
margin: 1ex 0;
a {
color: #fff;
@include button;
@extend button;
&:hover {
background: $footer-background;
}

View File

@ -17,7 +17,7 @@ div.fc-authenticated div#methods {
div.fc-connect {
margin: 5ex 0;
a.button {
@include button;
@extend button;
padding: 1rem 5em;
}
}

View File

@ -14,8 +14,8 @@
background: transparent;
}
@mixin button {
background-color: $button-background;
%button {
@extend %button;
text-align: center;
padding: 1rem;
color: $button-color;