bugfixes
This commit is contained in:
parent
4e0e518817
commit
ace619a2ec
2 changed files with 8 additions and 2 deletions
|
|
@ -57,6 +57,7 @@ app-header {
|
||||||
|
|
||||||
app-header {
|
app-header {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
|
z-index: 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
app-sidebar {
|
app-sidebar {
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
.navbar {
|
.navbar {
|
||||||
position: fixed;
|
position: absolute;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
top: 96px;
|
top: 96px;
|
||||||
|
|
@ -10,7 +10,7 @@
|
||||||
border-radius: 20px 0 20px 20px;
|
border-radius: 20px 0 20px 20px;
|
||||||
box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
|
box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
z-index: 1;
|
z-index: 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
.language {
|
.language {
|
||||||
|
|
@ -52,3 +52,8 @@ span {
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*------------- RESPONSIVE -------------*/
|
||||||
|
|
||||||
|
@media screen and (max-width: 910px) {
|
||||||
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue