diff --git a/client/src/app/admin/panel/tickets/admin-panel-my-tickets.scss b/client/src/app/admin/panel/tickets/admin-panel-my-tickets.scss
index fc123f92..098ddf6f 100644
--- a/client/src/app/admin/panel/tickets/admin-panel-my-tickets.scss
+++ b/client/src/app/admin/panel/tickets/admin-panel-my-tickets.scss
@@ -5,6 +5,8 @@
justify-content: flex-start;
align-items: center;
width: 100%;
+ position: relative;
+ bottom: 35px;
}
}
diff --git a/client/src/app/main/dashboard/dashboard-create-ticket/create-ticket-form.js b/client/src/app/main/dashboard/dashboard-create-ticket/create-ticket-form.js
index 643879ec..0cc35fac 100644
--- a/client/src/app/main/dashboard/dashboard-create-ticket/create-ticket-form.js
+++ b/client/src/app/main/dashboard/dashboard-create-ticket/create-ticket-form.js
@@ -77,10 +77,14 @@ class CreateTicketForm extends React.Component {
fieldProps={{allowImages: allowAttachments}}
required
field="textarea" />
-
- {allowAttachments ? this.renderFileUpload() : null}
- {(!userLogged) ? this.renderCaptcha() : null}
-
{i18n('CREATE_TICKET')}
+
+
+ {allowAttachments ? this.renderFileUpload() : null}
+ {i18n('CREATE_TICKET')}
+
+
+ {(!userLogged) ? this.renderCaptcha() : null}
+
{this.renderMessage()}
diff --git a/client/src/app/main/dashboard/dashboard-create-ticket/create-ticket-form.scss b/client/src/app/main/dashboard/dashboard-create-ticket/create-ticket-form.scss
index 755b5449..ddccbb6c 100644
--- a/client/src/app/main/dashboard/dashboard-create-ticket/create-ticket-form.scss
+++ b/client/src/app/main/dashboard/dashboard-create-ticket/create-ticket-form.scss
@@ -8,21 +8,29 @@
margin-top: 20px;
}
+ &__container {
+ display: flex;
+ flex-direction: row-reverse;
+ }
+
&__buttons-container {
display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
+ flex-direction: column;
+ justify-content: center;
+ align-items: flex-end;
&-without-allow-attachments {
display: flex;
flex-direction: row;
justify-content: flex-end;
align-items: center;
- width: 100%;
}
}
+ &__captcha-container {
+ padding-right: 20px;
+ }
+
&__captcha {
margin: 0 auto 20px;
height: 78px;