18 lines
267 B
CSS
18 lines
267 B
CSS
.index {
|
|
ol {
|
|
}
|
|
}
|
|
|
|
.item {
|
|
@apply my-2 mx-4 px-3 overflow-hidden;
|
|
@apply rounded-md shadow-sm hover:shadow;
|
|
@apply bg-gray-50 hover:bg-white;
|
|
|
|
.title {
|
|
@apply text-lg my-2;
|
|
}
|
|
.description {
|
|
@apply text-sm text-gray-600 leading-6 my-2;
|
|
}
|
|
}
|