You can use a CSS library such as Tailwind to style the SDK components.

Simply add the library’s classes to the SDK components just like you would to any other component.

To add Custom CSS, ensure that the Shadow DOM is turned off for the SDK component you are styling.

Conceptual Example:

<VeltWireframe>
    <VeltCommentsSidebarWireframe>
        ...
        {/* Header */}
        <VeltCommentsSidebarWireframe.Header>
            <div className="bg-blue-400">
                <VeltCommentsSidebarWireframe.CloseButton/>
                <VeltCommentsSidebarWireframe.Search/>
                <VeltCommentsSidebarWireframe.Status/>
                <VeltCommentsSidebarWireframe.FilterButton/>
            </div>
        </VeltCommentsSidebarWireframe.Header>
        ...
    </VeltCommentsSidebarWireframe>
</VeltWireframe>