We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4180ec commit 3107798Copy full SHA for 3107798
sass/components/buttons.scss
@@ -8,16 +8,18 @@
8
text-align: center;
9
text-decoration: none;
10
cursor: pointer;
11
- background-color: $theme01; color: $color01;
+ color: $color01;
12
+ background-color: $theme01;
13
border: none; /* necessary for type button */
14
transition: all .2s ease-out;
- border-radius: $btn-radius;
15
+ border-radius: 3px;
16
17
&:hover {
18
color: $color01;
19
background-color: darken($theme01, 20);
20
}
21
22
+
23
.btn {
24
@extend %btn;
25
@@ -63,8 +65,13 @@
63
65
64
66
&-theme05 {
67
- background-color: $theme05;
68
color: $color02;
69
+ background-color: $theme05;
70
71
+ &:hover {
72
+ background-color: darken($theme05, 20);
73
+ }
74
75
76
77
// extra utility class to make buttons full width
0 commit comments