Skip to content
Snippets Groups Projects
Commit 18cde680 authored by Kevin Lin's avatar Kevin Lin
Browse files

_sass: Simplify and inline variables

parent 139b1ca5
No related branches found
No related tags found
No related merge requests found
// Just the Class dependencies
@import 'variables';
@import 'mixins';
@import 'card';
......
@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;
......
......@@ -12,7 +12,7 @@
.staffer-image {
border-radius: 50%;
height: $staffer-image-size;
height: 100px;
margin-right: $sp-4;
}
......
// 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;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment