mirror of
https://github.com/grafana/grafana.git
synced 2025-02-10 23:55:47 -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."
|
||||
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
|
||||
</Button>
|
||||
</Tooltip>
|
||||
|
@ -83,5 +83,9 @@ export const getStyles = (theme: GrafanaTheme2) => {
|
||||
justifyContent: 'center',
|
||||
width: '100%',
|
||||
}),
|
||||
|
||||
skipButton: css({
|
||||
alignSelf: 'flex-start',
|
||||
}),
|
||||
};
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user