
Co-authored-by: kolaente <k@knt.li> Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/386 Co-authored-by: konrad <konrad@kola-entertainments.de> Co-committed-by: konrad <konrad@kola-entertainments.de>
23 lines
364 B
SCSS
23 lines
364 B
SCSS
.card {
|
|
background-color: $white;
|
|
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;
|
|
border-radius: $radius $radius 0 0;
|
|
}
|
|
}
|
|
|
|
.box, .card {
|
|
border: 1px solid $grey-200;
|
|
box-shadow: $shadow-md;
|
|
}
|