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.
25 lines
564 B
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;
|
|
}
|
|
}
|
|
}
|
|
|