feature: ChatGPT style show/hide panel button, panel state saving in local storage (#575)

* Add nav bar state saving to local storage

* Add ChatGPT style hide side panel button
This commit is contained in:
David 2023-07-04 05:26:00 +09:00 committed by GitHub
parent 88683b9cc5
commit 8e1473c3d8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 61 additions and 44 deletions

View file

@ -3,12 +3,13 @@
visibility: visible;
}
.nav-close-button {
.nav-open-button {
display: block;
position: absolute;
left: 100%;
top: 12px;
margin-left: 20px;
}
.nav-close-button {
margin-left: 10px;
}
.nav {
@ -107,4 +108,9 @@
.input-panel {
}
.nav-open-button
{
visibility: hidden;
}
}