Skip to content

Commit 3107798

Browse files
author
Darius Rosendahl
committed
Button style fixes
1 parent f4180ec commit 3107798

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

sass/components/buttons.scss

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,18 @@
88
text-align: center;
99
text-decoration: none;
1010
cursor: pointer;
11-
background-color: $theme01; color: $color01;
11+
color: $color01;
12+
background-color: $theme01;
1213
border: none; /* necessary for type button */
1314
transition: all .2s ease-out;
14-
border-radius: $btn-radius;
15+
border-radius: 3px;
1516

1617
&:hover {
1718
color: $color01;
1819
background-color: darken($theme01, 20);
1920
}
2021
}
22+
2123
.btn {
2224
@extend %btn;
2325

@@ -63,8 +65,13 @@
6365

6466
&-theme05 {
6567
@extend %btn;
66-
background-color: $theme05;
6768
color: $color02;
69+
background-color: $theme05;
70+
71+
&:hover {
72+
background-color: darken($theme05, 20);
73+
}
74+
6875
}
6976

7077
// extra utility class to make buttons full width

0 commit comments

Comments
 (0)