refactor: center banner notice text
All checks were successful
Open PR on Staging / audit_and_check (pull_request) Successful in 34s

This commit is contained in:
enes 2024-09-20 11:29:35 +02:00
parent 2e1d48168a
commit 633c23e459
2 changed files with 10 additions and 2 deletions

View File

@ -132,8 +132,10 @@ export const AppBar = () => {
<div className={styles.banner}> <div className={styles.banner}>
<Container> <Container>
<div className={styles.bannerInner}> <div className={styles.bannerInner}>
SIGit is currently Alpha software (available for internal <p className={styles.bannerText}>
testing), use at your own risk! SIGit is currently Alpha software (available for internal
testing), use at your own risk!
</p>
<Button <Button
aria-label={`close banner`} aria-label={`close banner`}
variant="text" variant="text"

View File

@ -67,3 +67,9 @@
} }
} }
} }
.bannerText {
margin-left: 54px;
flex-grow: 1;
text-align: center;
}