Skip to content
This repository has been archived by the owner on Sep 27, 2024. It is now read-only.

Commit

Permalink
fix: width of logo
Browse files Browse the repository at this point in the history
  • Loading branch information
EmmaVandewalle committed Mar 7, 2024
1 parent 2783ace commit 5e89504
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
3 changes: 2 additions & 1 deletion frontend/src/assets/styles/mainpage.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

img {
background-color: #5f63c8;
width: 4vw;
height: 100%;
}
}
Expand All @@ -19,7 +20,7 @@
}

.side-bar {
width: 4.15vw;
width: 4vw;
background-color: #6a74ce;

li {
Expand Down
16 changes: 15 additions & 1 deletion frontend/src/pages/login/LoginScreen.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,21 @@
import {JSX} from "react";
import {Header} from "../../components/Header.tsx";
import {Sidebar} from "../../components/Sidebar.tsx";

export default function LoginScreen(): JSX.Element {
return (
<>Login screen</>
<>
<div className={"main-header"}>
<Header/>
</div>
<div className={"main-content is-flex is-flex-direction-row"}>
<div className={"side-bar"}>
<Sidebar/>
</div>
<div>
<>Login screen</>
</div>
</div>
</>
)
}

0 comments on commit 5e89504

Please sign in to comment.