Skip to content

Commit 3c38150

Browse files
committed
frontend: sort css properties alphabetically
So it is simple to spot duplicate properties.
1 parent 8f18186 commit 3c38150

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

frontends/web/src/components/sidebar/sidebar.module.css

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,23 +29,23 @@
2929
}
3030

3131
.sidebar {
32-
position: fixed;
33-
margin-left: calc(var(--sidebar-width-large) * -1);
3432
align-content: stretch;
3533
background-color: var(--background-dark);
3634
bottom: 0;
3735
display: flex;
3836
flex-direction: column;
3937
flex-shrink: 0;
40-
justify-content: flex-start;
4138
height: 100%;
39+
justify-content: flex-start;
40+
margin-left: calc(var(--sidebar-width-large) * -1);
4241
/* mobile viewport bug fix */
4342
min-height: -webkit-fill-available;
43+
overflow-y: auto;
4444
padding: 0 0 var(--spacing-default) 0;
45+
position: fixed;
4546
top: 0;
4647
width: var(--sidebar-width-large);
4748
z-index: 4002;
48-
overflow-y: auto;
4949
}
5050

5151
.sidebar > *.end {

0 commit comments

Comments
 (0)