Skip to content

Commit 074282b

Browse files
authored
Center the taskbar items for large screens (#15)
* Center the taskbar items * Only center at breakpoint large and up
1 parent cbdbd20 commit 074282b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/components/Desktop/desktop.module.scss

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,16 @@ $bar-height: 3.4rem;
4242
}
4343

4444
.container {
45-
max-width: 72rem;
4645
margin: 0 auto;
4746
display: flex;
4847
flex-direction: row;
4948
gap: 0.5rem;
5049
height: $bar-height;
5150
align-items: center;
51+
52+
@include from(large) {
53+
justify-content: center;
54+
}
5255
}
5356

5457
.enrise,

0 commit comments

Comments
 (0)