Chamilo is a learning management system focused on ease of use and accessibility
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
chamilo-lms/assets/css/scss/organisms/_cards.scss

34 lines
452 B

.p-card {
@apply rounded-lg shadow-lg;
.p-card-body {
@apply flex flex-col space-y-4 p-4;
}
.p-card-header {
img {
@apply rounded-t-lg;
}
}
.p-card-title {
@apply text-body-2 font-semibold line-clamp-2;
}
.p-card-subtitle {
@apply text-body-2 text-gray-50;
}
.p-card-content {
&:empty {
@apply hidden;
}
}
.p-card-footer {
}
.p-menu {
@apply border-none py-0 w-full;
}
}