mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-15 05:08:41 -09:00
css: fix "Download" link being clickable when hidden (#7)
This commit is contained in:
parent
b22d310c99
commit
c0394e7764
1 changed files with 2 additions and 0 deletions
|
|
@ -74,6 +74,7 @@ header {
|
||||||
right: 20px;
|
right: 20px;
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
transition: opacity 150ms ease-in;
|
transition: opacity 150ms ease-in;
|
||||||
|
pointer-events: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.update-indicator a {
|
.update-indicator a {
|
||||||
|
|
@ -82,4 +83,5 @@ header {
|
||||||
|
|
||||||
.update-indicator.showing {
|
.update-indicator.showing {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
|
pointer-events: inherit;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue