fine-true
Version:
A small and beautiful Vue3 version of the UI Library
28 lines (26 loc) • 571 B
text/less
/*
jiangbei
*/
@card-shadow: 0 1px 2px -2px rgba(0, 0, 0, 0.34), 0 3px 6px 0 rgba(0, 0, 0, 0.2),
0 5px 12px 4px rgba(0, 0, 0, 0.1);
.fine-card {
transition: box-shadow 0.3s, border-color 0.3s;
border-radius: 3px;
&-bordered {
border: 1px solid #f0f0f0;
}
&:hover {
border-color: transparent;
box-shadow: @card-shadow;
}
.fine-card-header {
line-height: 36px;
min-height: 36px;
padding: 0 12px;
font-size: 14px;
border-bottom: 1px solid #f0f0f0;
}
.fine-card-body {
padding: 24px;
}
}