diff --git a/platypush/backend/http/webapp/src/components/panels/Settings/Token.vue b/platypush/backend/http/webapp/src/components/panels/Settings/Token.vue
index 74937a599..ce5d17f47 100644
--- a/platypush/backend/http/webapp/src/components/panels/Settings/Token.vue
+++ b/platypush/backend/http/webapp/src/components/panels/Settings/Token.vue
@@ -31,25 +31,33 @@
@@ -161,6 +169,12 @@ export default {
font-size: .75em;
margin: -.75em 0 2em 0;
}
+
+ span {
+ input {
+ width: 100%;
+ }
+ }
}
input[type=password] {
@@ -181,6 +195,11 @@ export default {
label {
display: flex;
flex-direction: column;
+
+ span {
+ display: block;
+ width: 100%;
+ }
}
textarea {
@@ -219,6 +238,10 @@ export default {
width: 50%;
justify-content: right;
padding: 1em;
+
+ label {
+ text-align: left;
+ }
}
.body {
diff --git a/platypush/backend/http/webapp/src/components/panels/Settings/Users.vue b/platypush/backend/http/webapp/src/components/panels/Settings/Users.vue
index 78d5ce78f..7e4eea264 100644
--- a/platypush/backend/http/webapp/src/components/panels/Settings/Users.vue
+++ b/platypush/backend/http/webapp/src/components/panels/Settings/Users.vue
@@ -12,8 +12,9 @@
-
-
+
@@ -31,7 +32,9 @@
-
+
@@ -138,32 +141,6 @@ export default {
await this.refresh()
},
- // onTokenFocus(event) {
- // event.target.select()
- // this.document.execCommand('copy')
- // event.target.setAttribute('disabled', true)
- //
- // this.notify({
- // text: 'Token copied to the clipboard',
- // image: {
- // iconClass: 'fas fa-copy',
- // },
- // })
- // },
- //
- // onTokenBlur(event) {
- // event.target.select()
- // this.document.execCommand('copy')
- // event.target.removeAttribute('disabled')
- //
- // this.notify({
- // text: 'Token copied to clipboard',
- // image: {
- // iconClass: 'fas fa-copy',
- // },
- // })
- // },
-
async changePassword(event) {
event.preventDefault()
@@ -264,6 +241,13 @@ export default {
}
}
+ form {
+ label {
+ display: block;
+ text-align: center;
+ }
+ }
+
.users-list {
background: $background-color;
margin-top: .15em;