Skip to content

Commit

Permalink
Minor graphical updates
Browse files Browse the repository at this point in the history
  • Loading branch information
mathiasbergqvist committed Oct 10, 2024
1 parent f0e83a2 commit 57338f4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions lab3/src/components/AvatarPicker/AvatarPicker.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
.buttonContainer {
display: flex;
gap: 10px;
margin-bottom: 20px;
}
2 changes: 1 addition & 1 deletion lab3/src/components/Container/Container.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const Container = () => {
</div>
<BackgroundColorPicker />
<AvatarPicker />
<List title="Users" />
<List title="Användare" />
</div>
</>
);
Expand Down
6 changes: 3 additions & 3 deletions lab3/src/components/NavBar/NavBar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ const NavBar = () => {
const avatar = null;

return (
<nav class="navbar bg-body-tertiary">
<div class="container-fluid">
<p class="navbar-brand">
<nav className="navbar bg-body-tertiary">
<div className="container-fluid">
<p className="navbar-brand">
<span className="circle">{avatar || "🚫"}</span>
</p>
</div>
Expand Down

0 comments on commit 57338f4

Please sign in to comment.