26 lines
401 B
CSS
26 lines
401 B
CSS
.index {
|
|
ol {
|
|
}
|
|
}
|
|
|
|
.item {
|
|
@apply my-2 mx-4 px-4 overflow-hidden;
|
|
@apply rounded-md shadow-sm hover:shadow;
|
|
@apply bg-gray-50 hover:bg-white cursor-pointer;
|
|
|
|
:global(.dark) & {
|
|
@apply bg-gray-800;
|
|
}
|
|
|
|
.title {
|
|
@apply text-xl my-4;
|
|
}
|
|
.description {
|
|
@apply text-base text-gray-600 leading-6 my-4 font-light;
|
|
|
|
:global(.dark) & {
|
|
@apply text-gray-400;
|
|
}
|
|
}
|
|
}
|