Loading src/nova/trame/view/theme/assets/core_style.scss +8 −2 Original line number Diff line number Diff line Loading @@ -4,7 +4,7 @@ html { .d-grid { display: grid; gap: 0.25em; gap: 0.8em; grid-auto-rows: auto; } Loading @@ -30,6 +30,12 @@ html { .v-btn { min-width: 0px; padding: 0 8px; padding: 5px 5px; box-shadow: none; } .v-btn__content { text-transform: none; } } src/nova/trame/view/theme/assets/vuetify_config.json +3 −1 Original line number Diff line number Diff line Loading @@ -159,8 +159,10 @@ "dot": true }, "VBtn": { "density": "default" "density": "compact", "size": "small" }, "VTextField": { "VBtn": { "size": "small" Loading tests/gallery/app.py +2 −2 Original line number Diff line number Diff line Loading @@ -136,14 +136,14 @@ class App(ThemedApp): # [ setup grid complete ] html.P("HBoxLayout") # [ setup hbox ] with HBoxLayout(classes="mb-4"): with HBoxLayout(classes="mb-4", width=400, halign="space-between"): vuetify.VBtn("Button 1") vuetify.VBtn("Button 2") vuetify.VBtn("Button 3") # [ setup hbox complete ] html.P("VBoxLayout") # [ setup vbox ] with VBoxLayout(classes="mb-4"): with VBoxLayout(classes="mb-4", height=100, valign="space-between"): vuetify.VBtn("Button 1") vuetify.VBtn("Button 2") vuetify.VBtn("Button 3") Loading Loading
src/nova/trame/view/theme/assets/core_style.scss +8 −2 Original line number Diff line number Diff line Loading @@ -4,7 +4,7 @@ html { .d-grid { display: grid; gap: 0.25em; gap: 0.8em; grid-auto-rows: auto; } Loading @@ -30,6 +30,12 @@ html { .v-btn { min-width: 0px; padding: 0 8px; padding: 5px 5px; box-shadow: none; } .v-btn__content { text-transform: none; } }
src/nova/trame/view/theme/assets/vuetify_config.json +3 −1 Original line number Diff line number Diff line Loading @@ -159,8 +159,10 @@ "dot": true }, "VBtn": { "density": "default" "density": "compact", "size": "small" }, "VTextField": { "VBtn": { "size": "small" Loading
tests/gallery/app.py +2 −2 Original line number Diff line number Diff line Loading @@ -136,14 +136,14 @@ class App(ThemedApp): # [ setup grid complete ] html.P("HBoxLayout") # [ setup hbox ] with HBoxLayout(classes="mb-4"): with HBoxLayout(classes="mb-4", width=400, halign="space-between"): vuetify.VBtn("Button 1") vuetify.VBtn("Button 2") vuetify.VBtn("Button 3") # [ setup hbox complete ] html.P("VBoxLayout") # [ setup vbox ] with VBoxLayout(classes="mb-4"): with VBoxLayout(classes="mb-4", height=100, valign="space-between"): vuetify.VBtn("Button 1") vuetify.VBtn("Button 2") vuetify.VBtn("Button 3") Loading