1
0
mirror of https://github.com/matrix-org/matrix-authentication-service.git synced 2025-11-20 12:02:22 +03:00

First-pass for Compound styles

This commit is contained in:
Germain
2023-06-07 12:07:01 +01:00
committed by Quentin Gliech
parent dfdfc25d00
commit 33da9f05fe
17 changed files with 493 additions and 259 deletions

View File

@@ -17,7 +17,7 @@ const NavBar: React.FC<{
children: React.ReactNode;
}> = ({ className, children }) => (
<nav className={className}>
<ul className="flex bg-grey-50 dark:bg-black-950 rounded-lg">{children}</ul>
<ul className="flex flex-row gap-4 justify-center ">{children}</ul>
</nav>
);