aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Hackl <hackl@data-quest.de>2026-02-17 15:51:40 +0100
committerThomas Hackl <hackl@data-quest.de>2026-03-17 09:01:06 +0100
commit30deffb0cd2adad49d83c4339b0677774b325f45 (patch)
treece8efe6e32f6ab4d12245bbb63f73ea1c1438d18
parent9c96a1f8ebe8d7211b073f21e58b0f2455db8fd7 (diff)
don't place forward button to the outer right
-rw-r--r--resources/vue/apps/StudipWizard.vue11
1 files changed, 5 insertions, 6 deletions
diff --git a/resources/vue/apps/StudipWizard.vue b/resources/vue/apps/StudipWizard.vue
index 5c657c9..022438c 100644
--- a/resources/vue/apps/StudipWizard.vue
+++ b/resources/vue/apps/StudipWizard.vue
@@ -198,16 +198,15 @@ onMounted(() => {
}
footer.wizard-buttons {
background-color: var(--color--content-box-header);
- display: flex;
padding-left: 15px;
padding-right: 15px;
- .back-button {
- margin-right: auto;
- }
-
.forward-button {
- margin-left: auto;
+ margin-left: 15px;
+
+ &:first-of-type {
+ margin-left: 0;
+ }
}
}
</style>