Remove margin and added top of 6vh
This commit is contained in:
parent
7601e3fe76
commit
d68c63c401
|
@ -32,9 +32,11 @@
|
||||||
padding: 0;
|
padding: 0;
|
||||||
width: var(--sidebar-size);
|
width: var(--sidebar-size);
|
||||||
background-color: var(--color-tertiary);
|
background-color: var(--color-tertiary);
|
||||||
height: 100%;
|
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
z-index: 999999;
|
z-index: 999999;
|
||||||
|
margin-top: 0;
|
||||||
|
top: 6vh;
|
||||||
|
height: 94vh;
|
||||||
}
|
}
|
||||||
|
|
||||||
.content-container {
|
.content-container {
|
||||||
|
@ -170,3 +172,16 @@ div.content {
|
||||||
.openMenu:hover {
|
.openMenu:hover {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.topbar {
|
||||||
|
position: fixed;
|
||||||
|
top: 0;
|
||||||
|
width: 100%;
|
||||||
|
z-index: 10000;
|
||||||
|
height: 6vh;
|
||||||
|
overflow-y: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nook-container {
|
||||||
|
margin-top: 8vh;
|
||||||
|
}
|
Loading…
Reference in New Issue