diff --git a/app.vue b/app.vue index 65c218c..bcd1afb 100644 --- a/app.vue +++ b/app.vue @@ -100,17 +100,12 @@ const toggleModal = () => { - -
-
+
diff --git a/assets/main.scss b/assets/main.scss index 34b29d3..80662e2 100644 --- a/assets/main.scss +++ b/assets/main.scss @@ -31,8 +31,12 @@ a[href^="#"] { .footer { @apply px-2 py-4 bg-slate-200; + .container { + @apply gap-4 + } + .k-logo { - @apply col-span-2 row-span-2 text-9xl text-orange-400; + @apply col-span-2 row-span-3 text-9xl text-orange-400; svg { @apply my-0 mx-auto; @@ -45,6 +49,10 @@ a[href^="#"] { &-small { @apply col-span-10 text-xs min-w-full prose; } + + &-social { + @apply col-span-10 flex gap-4 + } } } diff --git a/components/calcModels.vue b/components/calcModels.vue index 6543a82..d00036f 100644 --- a/components/calcModels.vue +++ b/components/calcModels.vue @@ -5,9 +5,9 @@ import { OrbitControls, vLightHelper } from '@tresjs/cientos' import Canvas from './model/canvas.vue'; const controlsState = reactive({ - minDistance: 6, + minDistance: 1, maxDistance: 10, - // enablePan: false, + enablePan: false, enableZoom: false, maxPolarAngle: (Math.PI / 2) - 0.2, }) @@ -16,9 +16,6 @@ const controlsState = reactive({ // const { scene: primaryLight } = await useGLTF('/models_light/primary_light.glb') // const { scene: secondaryLight } = await useGLTF('/models_light/secondary_light.glb') // console.log({ backLight, primaryLight, secondaryLight }) -watch(controlsState, ()=>{ - console.log(controlsState) -})