18 lines
304 B
SCSS
18 lines
304 B
SCSS
|
.card {
|
||
|
margin-bottom: map-get($spacers, 3);
|
||
|
box-shadow: $box-shadow-sm;
|
||
|
background-color: var(--raised-bg);
|
||
|
|
||
|
p:last-child {
|
||
|
margin-bottom: 0;
|
||
|
}
|
||
|
|
||
|
&--fullheight {
|
||
|
height: calc(100% - map-get($spacers, 3));
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.card-header,
|
||
|
.card-footer {
|
||
|
background-color: var(--raised-accent);
|
||
|
}
|