Using bulma with dash

Hi

I try to theme my dash app. I previously used bulma and quite like it.

So I add the bulma.min.css file to assets and get basic styling if I add the appropriate className attribute…

I get simple element styling going, but wonder if there is any way to render all elements using the css framework?

				html.Section([
					html.Div([
						html.Div([
							html.H1('Portfolio Dashboard', className='title'),
							html.H2('... experimenting with dash and bulma.io', className='subtitle')
						], className='container')
					], className='hero-body')
				], className='hero is-dark'),

What about buttons, dropdowns etc.?

1 Like