5d2e1ce19b
1. Rebuild the heathchecked-resource component now we can copy and paste 2. As the above rebuild came with new icons, we also swapped out 'most' of the other areas where we were using these new icons, plus any icons that were effected by the new icon placeholders 3. Begin to remove more and more of the project specific icons (now replaced by the shared ones)
32 lines
623 B
SCSS
32 lines
623 B
SCSS
%stats-card {
|
|
border: $decor-border-100;
|
|
border-radius: $decor-radius-100;
|
|
}
|
|
%stats-card li {
|
|
border-top: $decor-border-100;
|
|
}
|
|
%stats-card,
|
|
%stats-card li {
|
|
border-color: $gray-200;
|
|
}
|
|
%stats-card,
|
|
%stats-card header::before {
|
|
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.05);
|
|
}
|
|
%stats-card:hover,
|
|
%stats-card:focus {
|
|
box-shadow: 0 8px 10px 0 rgba(0, 0, 0, 0.1);
|
|
}
|
|
%stats-card header > :not(a):last-child {
|
|
border: $decor-border-100;
|
|
border-radius: 100%;
|
|
border-color: $gray-200;
|
|
background-color: $white;
|
|
}
|
|
%stats-card ul {
|
|
/*TODO: %list-style-none?*/
|
|
list-style-type: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|