widgetti / ipyvuetify

Jupyter widgets based on vuetify UI components
MIT License
348 stars 59 forks source link

vuetify typography classes don't work #279

Closed dfguerrerom closed 1 year ago

dfguerrerom commented 1 year ago

I'm trying to use some of the typography classes but none of them work.

import ipyvuetify as v
v.Html(tag="div", class_="text-h1",  children = ["I don't work"])

it seems a bug to me

12rambau commented 1 year ago

Be careful I think ipyvuetify is not yet wired to the latest version of vuetify. As a consequence it only wire typography prior to v2.3.0 (https://v2.vuetifyjs.com/en/styles/text-and-typography/#typography):

.display-4
.display-3
.display-2
.display-1
.headline
.title
.subtitle-1
.subtitle-2
.body-1
.body-2
.caption
.overline
import ipyvuetify as v
v.Html(tag="div", class_="display-1",  children = ["I do work"])
dfguerrerom commented 1 year ago

thank you, I didn't see that huge green message.