Hi @kenny0613 first let me give you a little context of how the styling works inside the plugin. Since this is a Gutenberg block, the plugin relies heavily on javascript for the codebase and the styling needs to play nicely inside the WP dashboard alongside other blocks. So I decided to generate the styles dynamically using a css-in-js technique that helps avoid any conflicts for people trying to use the plugin on their site with different themes & other plugins. This means there really aren’t a lot of static classnames to use.
So, to customize the style at this point, you will need to traverse the html elements from the containing element <div id="root-blocks-for-eventbrite" class="blocks-for-eventbrite blocks-for-eventbrite-css-wrapper"></div>
. Inside this div is where all the events will be displayed.
Hope this helps.