From ab4ca233513e783b649134e7247c5ad8a550275b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Grzegorz=20Ku=C4=87mierz?= Date: Thu, 7 Dec 2023 17:15:07 +0100 Subject: [PATCH] user select: none; format split; height transition; turn off cursor: pointer (selection) --- src/App.vue | 1 - src/components/Home.vue | 31 +++++++++++++++++++++++-------- src/style.css | 8 ++++++++ 3 files changed, 31 insertions(+), 9 deletions(-) diff --git a/src/App.vue b/src/App.vue index 8f859c9..dbd7026 100644 --- a/src/App.vue +++ b/src/App.vue @@ -24,7 +24,6 @@ onMounted(updateBackground); window.addEventListener('resize', event => { const newWidth = round(event.target.innerWidth); const newHeight = round(event.target.innerHeight); - console.log(newWidth, width.value); if (newWidth === width.value && newHeight === height.value) return; width.value = newWidth; height.value = newHeight; diff --git a/src/components/Home.vue b/src/components/Home.vue index 7b8229f..2184668 100644 --- a/src/components/Home.vue +++ b/src/components/Home.vue @@ -1,5 +1,5 @@