diff --git a/_sass/custom/custom.scss b/_sass/custom/custom.scss index 5067b2de8d8a6701f3028c0b403d7181880c3035..08c4fb53917da4e0888c7d0dafe7415c04294ebe 100644 --- a/_sass/custom/custom.scss +++ b/_sass/custom/custom.scss @@ -1,5 +1,4 @@ // Just the Class dependencies -@import 'variables'; @import 'mixins'; @import 'card'; diff --git a/_sass/custom/mixins.scss b/_sass/custom/mixins.scss index 4d8645cc46b2797334cbf1b8cab434cb0f7b17ef..a337fce4ea16ea7c22413d6310fefea8321045ed 100644 --- a/_sass/custom/mixins.scss +++ b/_sass/custom/mixins.scss @@ -1,5 +1,5 @@ @mixin abstract-card() { - box-shadow: $box-shadow; + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.07), 0 4px 14px rgba(0, 0, 0, 0.05); margin-left: -$gutter-spacing-sm; margin-right: -$gutter-spacing-sm; margin-bottom: $sp-4; diff --git a/_sass/custom/staffer.scss b/_sass/custom/staffer.scss index 8e87d307bc22d838b76d4b1e57608ee1e61b52fc..cfc3309416053afb96f5bb336fae5ac2c167feb2 100644 --- a/_sass/custom/staffer.scss +++ b/_sass/custom/staffer.scss @@ -12,7 +12,7 @@ .staffer-image { border-radius: 50%; - height: $staffer-image-size; + height: 100px; margin-right: $sp-4; } diff --git a/_sass/custom/variables.scss b/_sass/custom/variables.scss deleted file mode 100644 index 4c7a3f125c2c892229fa027f00723aa05dbefcf5..0000000000000000000000000000000000000000 --- a/_sass/custom/variables.scss +++ /dev/null @@ -1,14 +0,0 @@ -// Typography -$body-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; - -// Layout -$gutter-spacing: $sp-6; -$gutter-spacing-sm: $sp-4; -$nav-width: 216px; -$nav-width-md: 216px; -$content-width: 784px; - -// Components -$box-shadow: 0 1px 3px rgba(0, 0, 0, 0.07), 0 4px 14px rgba(0, 0, 0, 0.05); -$module-date-color: $link-color; -$staffer-image-size: 100px;