Working on Task Order card

This commit is contained in:
richard-dds
2019-06-04 16:05:10 -04:00
parent f2f0adde47
commit 804855d4bc
3 changed files with 46 additions and 0 deletions

View File

@@ -165,6 +165,7 @@ $checkbox-border-radius: 2px;
$border-radius: 3px;
$button-border-radius: 5px;
$box-shadow: 0px 2px 5px 0px $color-shadow;
$box-shadow-big: 0 4px 10px 0 rgba(193,193,193,0.5);
$focus-outline: 2px dotted $color-gray-light;
$focus-spacing: 3px;
$nav-width: 300px;

View File

@@ -572,3 +572,35 @@
}
}
}
.card {
width: 100%;
box-shadow: $box-shadow-big;
padding: ($gap * 2) ($gap * 2.5) ($gap * 4) ($gap * 3);
margin-bottom: 20px;
.card__status {
margin-bottom: $gap * 2;
display: flex;
align-items: baseline;
}
.card__header {
}
.card__body {
font-size: $small-font-size;
color: $color-gray-medium;
}
}
.card {
.label {
margin-left: 0;
}
.datetime {
font-size: $small-font-size;
}
}