aswi20220x00-gitlab/webapp/styles/annotation.module.scss @ b9c5b7dd
1 |
%lightBackground { |
---|---|
2 |
background: white; |
3 |
}
|
4 |
|
5 |
%sidePanel { |
6 |
@extend %lightBackground; |
7 |
overflow: auto; |
8 |
height: 100vh; |
9 |
position: sticky; |
10 |
top: 0; |
11 |
}
|
12 |
|
13 |
.leftSidePanel { |
14 |
@extend %sidePanel; |
15 |
left: 0; |
16 |
}
|
17 |
|
18 |
.rightSidePanel { |
19 |
@extend %sidePanel; |
20 |
right: 0; |
21 |
}
|
22 |
|
23 |
.mainView { |
24 |
@extend %lightBackground; |
25 |
margin: 20px; |
26 |
}
|