Skip to content

Commit

Permalink
Center the taskbar items for large screens (#15)
Browse files Browse the repository at this point in the history
* Center the taskbar items

* Only center at breakpoint large and up
  • Loading branch information
eXistenZNL authored Dec 2, 2024
1 parent cbdbd20 commit 074282b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/components/Desktop/desktop.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,16 @@ $bar-height: 3.4rem;
}

.container {
max-width: 72rem;
margin: 0 auto;
display: flex;
flex-direction: row;
gap: 0.5rem;
height: $bar-height;
align-items: center;

@include from(large) {
justify-content: center;
}
}

.enrise,
Expand Down

0 comments on commit 074282b

Please sign in to comment.