summaryrefslogtreecommitdiff
path: root/src/assets/styles/_buttons.scss
diff options
context:
space:
mode:
Diffstat (limited to 'src/assets/styles/_buttons.scss')
-rw-r--r--src/assets/styles/_buttons.scss27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/assets/styles/_buttons.scss b/src/assets/styles/_buttons.scss
new file mode 100644
index 00000000..02b0caea
--- /dev/null
+++ b/src/assets/styles/_buttons.scss
@@ -0,0 +1,27 @@
+.btn {
+ font-weight: $headings-font-weight;
+ svg {
+ vertical-align: sub;
+ margin-left: $spacer / 2;
+ }
+}
+
+.btn-primary {
+ fill: $white;
+}
+
+.btn-secondary {
+ fill: $white;
+ @extend .btn-secondary-dark;
+}
+
+.btn-link {
+ fill: $primary;
+ text-decoration: none !important;
+ &:focus {
+ box-shadow: $btn-focus-box-shadow;
+ }
+ &:hover {
+ fill: darken($primary, 15%);
+ }
+} \ No newline at end of file