mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-01-07 19:18:52 +01:00
parent
af47a68632
commit
dd19323280
2 changed files with 28 additions and 10 deletions
|
|
@ -27,10 +27,20 @@
|
|||
|
||||
.nav.active {
|
||||
position: relative;
|
||||
animation: nav-open 1000ms ease-in-out forwards;
|
||||
left: 0;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
@keyframes nav-open {
|
||||
0% {
|
||||
width: 0%;
|
||||
}
|
||||
100%{
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.nav-mask.active {
|
||||
opacity: 1;
|
||||
pointer-events: auto;
|
||||
|
|
@ -38,9 +48,9 @@
|
|||
|
||||
@media (max-width: 767px) {
|
||||
.nav {
|
||||
width: calc(100% - 60px) ;
|
||||
transition: all 0.5s;
|
||||
width: calc(100% - 60px);
|
||||
}
|
||||
|
||||
.nav-mask {
|
||||
position: fixed;
|
||||
z-index: 35;
|
||||
|
|
@ -52,7 +62,6 @@
|
|||
padding-left: 420px;
|
||||
padding-top: 12px;
|
||||
opacity: 0;
|
||||
transition: all 0.5s;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
|
|
@ -63,6 +72,7 @@
|
|||
|
||||
.nav.active {
|
||||
position: fixed;
|
||||
animation: none;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue