1
Fork 0
mirror of https://github.com/Steffo99/todocolors.git synced 2024-11-22 08:14:18 +00:00

Rename .appBody CSSm class to .body

This commit is contained in:
Steffo 2023-08-09 01:50:58 +02:00
parent 11eb6ec4ad
commit 5539a5ffb3
Signed by: steffo
GPG key ID: 2A24051445686895
2 changed files with 2 additions and 2 deletions

View file

@ -1,4 +1,4 @@
.appBody {
.body {
min-width: 100svw;
min-height: 100svh;

View file

@ -4,7 +4,7 @@ import style from "./Body.module.css"
export function Body({children}: {children: ReactNode}) {
return (
<body className={style.appBody}>
<body className={style.body}>
{children}
</body>
)