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 f569bbc commit 62e2c07Copy full SHA for 62e2c07
docs/.vuepress/theme/styles/buttons.styl
@@ -0,0 +1,20 @@
1
+.btn {
2
+ font-weight: bold;
3
+ padding: 10px 15px;
4
+ border: none;
5
+ font-size: 1em;
6
+ margin-right: 10px;
7
+ border-radius: 2px;
8
+ transition: all 0.3s;
9
+ cursor: pointer;
10
+ outline: none;
11
+}
12
+
13
+.btn-primary {
14
+ background-color: darken($accentColor, 30%);
15
+ color: white;
16
17
+ &:hover {
18
+ background-color: $accentColor;
19
+ }
20
docs/.vuepress/theme/styles/index.styl
@@ -1,4 +1,5 @@
@import 'util';
+@import 'buttons';
@import 'layout-center';
@import 'header';
@import 'sidebar';
0 commit comments