classes
argument to some widgets (like VContainer
)
#577
-
Hi, In Trame tutorials I can see that with SinglePageLayout(server) as layout:
layout.title.set_text("Hello trame")
with layout.content:
with vuetify.VContainer(
fluid=True,
classes="pa-0 fill-height",
):
view = vtk.VtkLocalView(renderWindow) I feel like keyword |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Go to https://vuetifyjs.com/en/styles/ it's a 404, In the side container, 'Click' on Styles and animations to see the API and the Utility classes For example, if you click on Sizing you will find the classes and explanations of these classes. for pa and more - https://vuetifyjs.com/en/styles/spacing/#how-it-works I have this Vuetify page always open while I'm developing. It is the GOTO place for everything Vuetify. Finally, trame has some basic rules for working with Vuetify. That information is available here https://kitware.github.io/trame/guide/tutorial/html.html I have this page bookmarked for quick access. |
Beta Was this translation helpful? Give feedback.
Go to https://vuetifyjs.com/en/styles/ it's a 404,
In the side container, 'Click' on Styles and animations to see the API and the Utility classes
For example, if you click on Sizing you will find the classes and explanations of these classes.
for pa and more - https://vuetifyjs.com/en/styles/spacing/#how-it-works
for fill-height and more - https://vuetifyjs.com/en/styles/sizing/#usage
I have this Vuetify page always open while I'm developing. It is the GOTO place for everything Vuetify.
Finally, trame has some basic rules for working with Vuetify. That information is available here
https://kitware.github.io/trame/guide/tutorial/html.html
I have this page bookmarked for quick access.