We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5fbd4b5 commit 4e93661Copy full SHA for 4e93661
1 file changed
src/views/config-v2/DatabaseCredentialsSection.tsx
@@ -79,7 +79,7 @@ export const DatabaseCredentialsSection = (props: Props) => {
79
</Field>
80
<Field
81
label={labels.password.label}
82
- description={<div style={{ marginTop: '5px' }}>{labels.password.tooltip}</div>}
+ description={<div className={styles.passwordDescription}>{labels.password.tooltip}</div>}
83
>
84
<SecretInput
85
name="pwd"
@@ -100,6 +100,9 @@ export const DatabaseCredentialsSection = (props: Props) => {
100
};
101
102
const getStyles = () => ({
103
+ passwordDescription: css({
104
+ marginTop: '5px',
105
+ }),
106
credentialsSection: css({
107
display: 'flex',
108
flexWrap: 'wrap',
0 commit comments