We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3bd700b commit 137d51bCopy full SHA for 137d51b
src/styles.css
@@ -2,4 +2,37 @@
2
.view-container {
3
position: relative;
4
overflow: hidden;
5
+}
6
+
7
+.showNavbarButton {
8
+ display: flex;
9
+ position: absolute;
10
+ justify-content: center;
11
+ align-items: center;
12
+ cursor: pointer;
13
+ z-index: 1000;
14
15
+ background: rgba(0, 0, 0, 0.09);
16
+ bottom: 10px;
17
+ height: 30px;
18
+ width: 30px;
19
+ right: 10px;
20
21
+ transition: background 0.2s ease, color 0.2s ease;
22
23
+ &:hover {
24
+ background-color: rgba(0, 0, 0, 0.8);
25
+ }
26
27
28
+.hideNavbarButton svg {
29
+ width: 100%;
30
+ transform: scale(1);
31
+ transition: transform .2s ease;
32
+ vertical-align: initial;
33
+ margin-top: -2;
34
35
36
+ transform: scale(1.2);
37
38
}
0 commit comments