This repository has been archived on 2024-02-08. You can view files and clone it, but cannot push or open issues or pull requests.
frontend/src/styles/components/base/card.scss

28 lines
435 B
SCSS
Raw Normal View History

2019-12-19 22:09:23 +00:00
.card {
background-color: $white;
2019-12-19 22:09:23 +00:00
border-radius: $radius;
margin-bottom: 1rem;
.card-image {
img {
border-radius: $radius $radius 0 0;
}
}
.card-header {
box-shadow: none;
border-bottom: 1px solid $grey-200;
2019-12-19 22:09:23 +00:00
border-radius: $radius $radius 0 0;
}
.modal-card-foot {
background: $grey-50;
border-top: 0;
}
2019-12-19 22:09:23 +00:00
}
.box, .card {
border: 1px solid $grey-200;
2021-01-26 19:31:56 +00:00
box-shadow: $shadow-sm;
2019-12-19 22:09:23 +00:00
}