diff --git a/webapp/components/ContributionForm/ContributionForm.vue b/webapp/components/ContributionForm/ContributionForm.vue index 61f100310..d346cf3a7 100644 --- a/webapp/components/ContributionForm/ContributionForm.vue +++ b/webapp/components/ContributionForm/ContributionForm.vue @@ -58,9 +58,9 @@
- + -
+
-
+
- + - - + +
- + {{ $t('post.viewEvent.eventIsOnline') }}
@@ -153,7 +153,7 @@ - + .base-card { @@ -497,6 +515,12 @@ export default { min-width: fit-content; } } + + > .buttons-footer-helper { + margin-right: 16px; + // important needed because of component inline style + margin-bottom: 6px !important; + } } .blur-toggle { diff --git a/webapp/locales/en.json b/webapp/locales/en.json index 4021c053a..0f0b9c6b4 100644 --- a/webapp/locales/en.json +++ b/webapp/locales/en.json @@ -722,7 +722,7 @@ "forGroup": { "title": "For The Group “{name}”" }, - "title": "Create A New Post" + "title": "Create A New Article" }, "edited": "edited", "editPost": { diff --git a/webapp/pages/post/create.vue b/webapp/pages/post/create.vue index dbe58eaa0..cc4fb828a 100644 --- a/webapp/pages/post/create.vue +++ b/webapp/pages/post/create.vue @@ -1,10 +1,10 @@ @@ -114,4 +112,12 @@ export default { font-size: 30px; text-align: center; } + +// copy hover effect from ghost button to use for ds-card +.create-form-btn:not(.ds-card-primary):hover { + background-color: #faf9fa; +} +.create-form-btn .ds-button-ghost:hover { + background-color: transparent; +}