16 lines
280 B
SCSS
16 lines
280 B
SCSS
.card {
|
|
padding: 0;
|
|
min-width: 320px;
|
|
height: 110px;
|
|
overflow: hidden;
|
|
box-shadow: none;
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.content {
|
|
padding: 22px 16px 16px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
} |