Browse Source

fix sidebar title clickable

dev
xmcp 6 years ago
parent
commit
5a34673cd1
  1. 9
      src/Sidebar.css

9
src/Sidebar.css

@ -51,11 +51,10 @@
} }
.sidebar-on .sidebar, .sidebar-on .sidebar-title { .sidebar-on .sidebar, .sidebar-on .sidebar-title {
opacity: 1;
animation: sidebar-fadein .15s cubic-bezier(0.15, 0.4, 0.6, 1); animation: sidebar-fadein .15s cubic-bezier(0.15, 0.4, 0.6, 1);
} }
.sidebar-off .sidebar, .sidebar-off .sidebar-title { .sidebar-off .sidebar, .sidebar-off .sidebar-title {
opacity: 0; visibility: hidden;
pointer-events: none; pointer-events: none;
backdrop-filter: none; backdrop-filter: none;
animation: sidebar-fadeout .2s cubic-bezier(0.15, 0.4, 0.6, 1); animation: sidebar-fadeout .2s cubic-bezier(0.15, 0.4, 0.6, 1);
@ -66,11 +65,13 @@
@keyframes sidebar-fadeout { @keyframes sidebar-fadeout {
from { from {
visibility: visible;
opacity: 1; opacity: 1;
transform: none; transform: none;
backdrop-filter: none; backdrop-filter: none;
} }
to { to {
visibility: visible;
opacity: 0; opacity: 0;
transform: translateX(40vw); transform: translateX(40vw);
backdrop-filter: none; backdrop-filter: none;
@ -89,8 +90,8 @@
} }
} }
@keyframes sidebar-initial { @keyframes sidebar-initial {
from {visibility: hidden;} from {opacity: 0;}
to {visibility: hidden;} to {opacity: 0;}
} }
.sidebar-title { .sidebar-title {

Loading…
Cancel
Save