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

@@ -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;
}
}