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/molecules/_empty_state.scss

25 lines
564 B

@layer components {
.empty-state {
@apply border border-solid border-support-1 bg-gray-10 flex flex-auto justify-center items-center p-10 rounded-lg;
&__container {
@apply flex flex-col items-center text-center w-60;
}
&__icon {
@apply mb-4 text-transparent bg-clip-text bg-gradient-to-br from-primary to-primary-gradient w-32 h-32;
&.mdi {
font-size: 8rem;
}
}
&__summary {
@apply text-body-2 font-semibold text-gray-90;
}
&__detail {
@apply text-body-2 text-gray-90;
}
}
}