diff --git a/assets/main.scss b/assets/main.scss index 8bf6159..4a0a29c 100644 --- a/assets/main.scss +++ b/assets/main.scss @@ -178,10 +178,17 @@ a[href^="#"] { } &_calc { - @apply py-0; + @apply py-0 relative; + + > .container:first-child { + @apply relative h-[50vh] min-h-[600px] justify-between; + > * { + @apply z-10 + } + } &-canvas { - @apply relative h-[50vh] min-h-[600px]; + @apply absolute top-0 bottom-0; } } @@ -301,10 +308,10 @@ button { } &-item { - @apply flex flex-row gap-4 items-center justify-start xl:justify-center flex-wrap xl:flex-nowrap; + @apply flex flex-row items-center justify-start flex-wrap; label { - @apply w-full xl:w-auto; + @apply w-full; } .icon { @@ -316,7 +323,7 @@ button { } &_checkbox { - @apply w-full xl:w-auto flex-row xl:flex-initial flex-nowrap + @apply w-full xl:w-auto flex-row xl:flex-initial flex-nowrap gap-4 } input[type=range] { diff --git a/components/calcModels.vue b/components/calcModels.vue index 76ab119..8e9b45d 100644 --- a/components/calcModels.vue +++ b/components/calcModels.vue @@ -1,59 +1,37 @@ - + + - + - - - - - - diff --git a/components/calcValues.vue b/components/calcValues.vue index 65c4c5b..80a0ec1 100644 --- a/components/calcValues.vue +++ b/components/calcValues.vue @@ -151,69 +151,52 @@ const goal = (target: string, params: object) => { \ No newline at end of file diff --git a/components/model/fence.vue b/components/model/fence.vue index 1a8a206..af92bd8 100644 --- a/components/model/fence.vue +++ b/components/model/fence.vue @@ -9,7 +9,6 @@ const fence_section = use_fence_section() const section_count = use_section_count() const extra_section = use_extra_section() const remove_pillar = use_remove_pillar() -const max_size = use_max_size() const lSize = lamelle_height.value const bSize = 0.0235 diff --git a/components/model/line.vue b/components/model/line.vue index c6b54b3..951de31 100644 --- a/components/model/line.vue +++ b/components/model/line.vue @@ -1,5 +1,6 @@