mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-02-27 20:26:23 +00:00
23 lines
344 B
SCSS
23 lines
344 B
SCSS
@import 'extends';
|
|
|
|
$card-margin: 8px !default;
|
|
$card-box-shadow: $whiteframe-shadow-z1 !default;
|
|
|
|
md-card {
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
flex-direction: column;
|
|
background-color: sg-color($sogoPaper, 50);
|
|
|
|
box-shadow: $card-box-shadow;
|
|
|
|
> img {
|
|
order: 0;
|
|
width: 100%;
|
|
}
|
|
|
|
md-card-content {
|
|
order: 1;
|
|
}
|
|
}
|