From caba333287c1b743bf553b3a83806fc136f4fc4b Mon Sep 17 00:00:00 2001
From: Eliot Berriot <contact@eliotberriot.com>
Date: Wed, 16 Oct 2019 11:48:37 +0200
Subject: [PATCH] Fix #933: Ensure password input doesn't overflow outside of
 container

---
 changes/changelog.d/933.bugfix               | 1 +
 front/src/components/forms/PasswordInput.vue | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)
 create mode 100644 changes/changelog.d/933.bugfix

diff --git a/changes/changelog.d/933.bugfix b/changes/changelog.d/933.bugfix
new file mode 100644
index 0000000000..ff8712be21
--- /dev/null
+++ b/changes/changelog.d/933.bugfix
@@ -0,0 +1 @@
+Ensure password input doesn't overflow outside of container (#933)
diff --git a/front/src/components/forms/PasswordInput.vue b/front/src/components/forms/PasswordInput.vue
index 702be4f66a..fe1a01a9ff 100644
--- a/front/src/components/forms/PasswordInput.vue
+++ b/front/src/components/forms/PasswordInput.vue
@@ -1,5 +1,5 @@
 <template>
-  <div class="ui action input">
+  <div class="ui fluid action input">
     <input
     required
     name="password"
-- 
GitLab