mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-02-15 23:18:09 +01:00
fix: mobile view for sibling switch
This commit is contained in:
parent
d052d221dc
commit
c91ce36227
3 changed files with 72 additions and 54 deletions
|
|
@ -1,70 +1,77 @@
|
|||
.nav-mask {
|
||||
position: fixed;
|
||||
z-index: 998;
|
||||
left: 0;
|
||||
right: 0;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
background-color: rgba(86, 88, 105, .75);
|
||||
padding-left: 420px;
|
||||
padding-top: 12px;
|
||||
opacity: 0;
|
||||
transition: all .5s;
|
||||
pointer-events: none;
|
||||
position: fixed;
|
||||
z-index: 998;
|
||||
left: 0;
|
||||
right: 0;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
background-color: rgba(86, 88, 105, 0.75);
|
||||
padding-left: 420px;
|
||||
padding-top: 12px;
|
||||
opacity: 0;
|
||||
transition: all 0.5s;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.nav {
|
||||
transition: all .5s;
|
||||
transition: all 0.5s;
|
||||
}
|
||||
|
||||
.nav-close-button {
|
||||
display: none;
|
||||
}
|
||||
|
||||
@media (min-width: 1024px) {
|
||||
.sibling-switch-container {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 1024px) {
|
||||
.sibling-switch {
|
||||
/* .sibling-switch {
|
||||
left: 114px;
|
||||
top: unset;
|
||||
bottom: 4px;
|
||||
visibility: visible;
|
||||
z-index: 2;
|
||||
}
|
||||
} */
|
||||
.sibling-switch {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.resubmit-edit-button {
|
||||
display: block;
|
||||
visibility: visible;
|
||||
}
|
||||
.resubmit-edit-button {
|
||||
display: block;
|
||||
visibility: visible;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 767px) {
|
||||
.nav-close-button {
|
||||
display: block;
|
||||
position: absolute;
|
||||
left: 100%;
|
||||
top: 12px;
|
||||
margin-left: 20px;
|
||||
}
|
||||
.nav-close-button {
|
||||
display: block;
|
||||
position: absolute;
|
||||
left: 100%;
|
||||
top: 12px;
|
||||
margin-left: 20px;
|
||||
}
|
||||
|
||||
.nav {
|
||||
position: fixed;
|
||||
z-index: 999;
|
||||
left: calc(-100%);;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
max-width: 320px;
|
||||
width: calc(100% - 60px);
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.nav.active {
|
||||
left: 0;
|
||||
opacity: 1;
|
||||
}
|
||||
.nav {
|
||||
position: fixed;
|
||||
z-index: 999;
|
||||
left: calc(-100%);
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
max-width: 320px;
|
||||
width: calc(100% - 60px);
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.nav-mask.active {
|
||||
opacity: 1;
|
||||
pointer-events: auto;
|
||||
}
|
||||
.nav.active {
|
||||
left: 0;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.nav-mask.active {
|
||||
opacity: 1;
|
||||
pointer-events: auto;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue