Moved css classes to corresponding components

This commit is contained in:
Linus Flood
2024-09-19 09:46:12 +02:00
parent ff7dc69f7e
commit 01aafc347d
5 changed files with 17 additions and 15 deletions

View File

@@ -10,7 +10,7 @@ import Avatar from "../Avatar"
import MyPagesMenu from "../MyPagesMenu"
import MyPagesMobileMenu from "../MyPagesMobileMenu"
import styles from "../mainMenu.module.css"
import styles from "./myPagesMenuWrapper.module.css"
export default async function MyPagesMenuWrapper() {
const lang = getLang()

View File

@@ -0,0 +1,15 @@
.loginLink {
display: flex;
align-items: center;
gap: var(--Spacing-x1);
}
.userName {
display: none;
}
@media screen and (min-width: 768px) {
.userName {
display: inline;
}
}