fix somes issues
continuous-integration/drone/push Build is passing Details

fix/web-images
Lucas DELANIER 1 year ago
parent 3c0a626932
commit 225a994e80

@ -53,13 +53,30 @@
});
}
});
setTimeout(function(){
// Hide the address bar!
window.scrollTo(0, 1);
}, 0);
});
});
</script>
</body>
</html>
<style>
/* Centers flutter canvas with a size of the viewport*/
flt-glass-pane {
position: fixed !important; /* Overrides absolute from flutter */
top: 50vh !important;
left: 50vw !important;
max-width: 100vw !important;
max-height: 100vh !important;
transform: translate(-50vw, -50vh) !important;
}
/*
Scrollbar hide doesn't work on iOS, they add a default one when overflow:true and -webkit-overflow-scrolling: touch;
Sadly since iOS 13, this value is forced on iOS -> https://developer.apple.com/documentation/safari-release-notes/safari-13-release-notes
*/
::-webkit-scrollbar {
display: false;
width: 0px;
height: 0px; /* Remove scrollbar space */
background: transparent; /* Optional: just make scrollbar invisible */
}
</style>

Loading…
Cancel
Save