poprawki responsywności

This commit is contained in:
2023-11-28 17:56:08 +01:00
parent 86417f3422
commit 1947555724
3 changed files with 29 additions and 9 deletions
+18
View File
@@ -45,6 +45,8 @@ export default defineComponent({
</script>
<style lang="scss" scoped>
@import '../../styles/responsive.scss';
.body {
position: fixed;
top: 0;
@@ -79,5 +81,21 @@ export default defineComponent({
width: 95%;
max-width: 800px;
max-height: 95vh;
& > :slotted(div) {
max-height: 95vh;
}
}
@include smallScreen {
.wrapper {
top: 0;
transform: translate(-50%, 1em);
max-height: 90vh;
& > :slotted(div) {
max-height: 90vh;
}
}
}
</style>