Hide toolbar while mousedown

This commit is contained in:
Oswaldo Acauan 2018-04-09 17:37:09 -03:00
parent 23130319d9
commit 0fd5bf6710

View File

@ -20,6 +20,12 @@ $toolbar-list-color: $color-gray;
right: 0;
bottom: 0;
pointer-events: none;
transition: opacity .25s;
opacity: 1;
:global(#presentationContainer:active:hover) & {
opacity: 0;
}
@include mq("#{$landscape} and (max-height:#{upper-bound($small-range)}), #{$small-only}") {
transform: scale(.75);