Skip to content

Commit 93dd918

Browse files
committed
fix: Fix alignment issues of app password form
Signed-off-by: Sandi Cej <cej.sandi@gmail.com>
1 parent 5734ffd commit 93dd918

1 file changed

Lines changed: 4 additions & 13 deletions

File tree

apps/settings/src/components/AuthTokenSetup.vue

Lines changed: 4 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66
<template>
77
<form id="generate-app-token-section"
8-
class="row spacing"
98
@submit.prevent="submit">
109
<!-- Port to TextField component when available -->
1110
<NcTextField :value.sync="deviceName"
@@ -79,19 +78,11 @@ export default defineComponent({
7978
</script>
8079

8180
<style lang="scss" scoped>
82-
.app-name-text-field {
83-
height: 44px !important;
84-
padding-inline-start: 12px;
85-
margin-inline-end: 12px;
86-
width: 200px;
87-
}
88-
89-
.row {
81+
#generate-app-token-section {
9082
display: flex;
91-
align-items: center;
92-
}
93-
94-
.spacing {
83+
flex-direction: column;
84+
gap: 1rem;
85+
max-width: 400px;
9586
padding-top: 16px;
9687
}
9788
</style>

0 commit comments

Comments
 (0)