26 lines
369 B
CSS
26 lines
369 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;
|
|
|
|
:global(.dark) & {
|
|
@apply bg-gray-800;
|
|
}
|
|
|
|
.title {
|
|
@apply text-lg my-4;
|
|
}
|
|
.description {
|
|
@apply text-sm text-gray-600 leading-6 my-4;
|
|
|
|
:global(.dark) & {
|
|
@apply text-gray-400;
|
|
}
|
|
}
|
|
}
|