fix rotateY #20

Merged
Ota-Prokopec merged 1 commits from QRcode into deploy/prod 2022-11-22 18:16:53 +00:00
1 changed files with 5 additions and 3 deletions
Showing only changes of commit 2264b7b7f0 - Show all commits

View File

@ -33,14 +33,16 @@
</script>
<div class={'w-full h-full flex absolute overflow-hidden ' + className}>
<div id="reader" class="w-full h-full flex justify-center items-center overflow-hidden" />
<div id="reader" class="w-full h-full flex justify-center items-center overflow-hidden" />
<div class="h-full w-full absolute">
<slot />
</div>
</div>
<style>
#reader {
transform: rotateY(180deg);
@media only screen and (min-width: 600px) {
#reader {
transform: rotateY(180deg);
}
}
</style>