mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Login: Fix Skip
button alignment (#89332)
fix login skip button alignment
This commit is contained in:
parent
44a40f8e0c
commit
890482052a
@ -91,7 +91,13 @@ export const ChangePassword = ({ onSubmit, onSkip, showDefaultPasswordWarning }:
|
|||||||
content="If you skip you will be prompted to change password next time you log in."
|
content="If you skip you will be prompted to change password next time you log in."
|
||||||
placement="bottom"
|
placement="bottom"
|
||||||
>
|
>
|
||||||
<Button fill="text" onClick={onSkip} type="button" data-testid={selectors.pages.Login.skip}>
|
<Button
|
||||||
|
className={styles.skipButton}
|
||||||
|
fill="text"
|
||||||
|
onClick={onSkip}
|
||||||
|
type="button"
|
||||||
|
data-testid={selectors.pages.Login.skip}
|
||||||
|
>
|
||||||
Skip
|
Skip
|
||||||
</Button>
|
</Button>
|
||||||
</Tooltip>
|
</Tooltip>
|
||||||
|
@ -83,5 +83,9 @@ export const getStyles = (theme: GrafanaTheme2) => {
|
|||||||
justifyContent: 'center',
|
justifyContent: 'center',
|
||||||
width: '100%',
|
width: '100%',
|
||||||
}),
|
}),
|
||||||
|
|
||||||
|
skipButton: css({
|
||||||
|
alignSelf: 'flex-start',
|
||||||
|
}),
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user