mirror of
https://github.com/danbulant/Nertivia-Client
synced 2026-05-21 21:28:37 +00:00
fixed overflow issues
This commit is contained in:
parent
6dca9e9271
commit
bb9a2c83e6
2 changed files with 8 additions and 0 deletions
|
|
@ -161,6 +161,7 @@ export default {
|
|||
display: flex;
|
||||
flex-direction: column;
|
||||
width: 340px;
|
||||
height: 100%;
|
||||
max-width: calc(100% - 60px);
|
||||
flex-shrink: 0;
|
||||
z-index: 2;
|
||||
|
|
@ -170,6 +171,8 @@ export default {
|
|||
flex-direction: row;
|
||||
flex-shrink: 0;
|
||||
z-index: 2;
|
||||
flex: 1;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.content {
|
||||
|
|
@ -381,6 +384,7 @@ export default {
|
|||
.left-panel {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
top: 0;
|
||||
z-index: 2222;
|
||||
background: linear-gradient(to bottom, #00477e 0, #016dc0);
|
||||
height: 100%;
|
||||
|
|
|
|||
|
|
@ -119,6 +119,7 @@ export default {
|
|||
display: flex;
|
||||
flex-direction: column;
|
||||
z-index: 1;
|
||||
overflow: hidden;
|
||||
}
|
||||
.inner {
|
||||
z-index: 2;
|
||||
|
|
@ -129,6 +130,8 @@ export default {
|
|||
display: flex;
|
||||
flex-direction: row;
|
||||
z-index: 1;
|
||||
flex: 1;
|
||||
overflow: hidden;
|
||||
}
|
||||
.wrapper {
|
||||
display: flex;
|
||||
|
|
@ -175,6 +178,7 @@ export default {
|
|||
.left-panel {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
top: 0;
|
||||
z-index: 2;
|
||||
background: linear-gradient(to bottom, #00477e 0, #016dc0);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue