/**
 *  Custom list style definitions.
 *
 *  @copyright  2023 Vinacles BV
 *  @author     Clyde Semeleer
 */
@layer components {
    ul.checkmark-list {
        @apply list-none m-0 p-0;
    }
    ul.checkmark-list li::before {
        content: '✓';
        margin-right: 0.5em;
        color: theme('colors.green.500');
    }
    div.extra ul {
        @apply list-none m-0 p-0;
    }
}
