Commit 3f00ee3e authored by Cole Bemis's avatar Cole Bemis

Remove SCSS color variables

parent ff9af773
--- ---
--- ---
/* Variables */
$color-primary: black;
$color-secondary: white;
$border-radius: 0.375rem;
/* Mixins */ /* Mixins */
@mixin for-tablet-up { @mixin for-tablet-up {
...@@ -50,24 +43,24 @@ a { ...@@ -50,24 +43,24 @@ a {
.button { .button {
display: inline-block; display: inline-block;
padding: 1rem 1.5rem; padding: 1rem 1.5rem;
border-radius: $border-radius; border-radius: 0.375rem;
border: 1px solid transparent; border: 1px solid transparent;
} }
.button-primary { .button-primary {
color: $color-secondary; color: white;
background-color: $color-primary; background-color: black;
} }
.button-secondary { .button-secondary {
border-color: $color-primary; border-color: black;
} }
/* Header */ /* Header */
.header { .header {
padding: 4rem 0; padding: 4rem 0;
border-bottom: 1px solid $color-primary; border-bottom: 1px solid black;
text-align: center; text-align: center;
@include for-tablet-up { @include for-tablet-up {
...@@ -119,6 +112,8 @@ a { ...@@ -119,6 +112,8 @@ a {
} }
} }
/* Icons */
.feather-icon { .feather-icon {
display: inline-block; display: inline-block;
width: 1.5rem; width: 1.5rem;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment