mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
25 lines
457 B
SCSS
25 lines
457 B
SCSS
.data-vault {
|
|
$card-height: 160px;
|
|
$icon-yoffset: -1.5rem;
|
|
$icon-xoffset: -5rem;
|
|
$icon-fsize: 13rem;
|
|
|
|
.card {
|
|
.card-content {
|
|
overflow: hidden;
|
|
height: $card-height;
|
|
|
|
.card-title, p {
|
|
color: black !important;
|
|
}
|
|
|
|
i.material-icons.right {
|
|
font-size: $icon-fsize;
|
|
margin-top: $icon-yoffset;
|
|
margin-left: 0;
|
|
margin-right: $icon-xoffset !important;
|
|
}
|
|
}
|
|
}
|
|
|
|
} |