diff --git a/assets/main.scss b/assets/main.scss index 80662e2..1e21369 100644 --- a/assets/main.scss +++ b/assets/main.scss @@ -114,11 +114,11 @@ a[href^="#"] { } label { - @apply block mb-2 text-sm font-medium text-gray-900 dark:text-white; + @apply inline-block mb-2 text-sm font-medium text-gray-900 dark:text-white; } input { - @apply bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded focus:ring-blue-500 focus:border-blue-500 text-lg w-full p-2.5 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500; + @apply bg-gray-50 border border-gray-300 text-gray-900 rounded focus:ring-blue-500 focus:border-blue-500 text-lg w-full p-2.5 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500; } button { diff --git a/components/calcModels.vue b/components/calcModels.vue index d00036f..d44ebad 100644 --- a/components/calcModels.vue +++ b/components/calcModels.vue @@ -16,6 +16,11 @@ 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 }) + +const { onLoop } = useRenderLoop() +onLoop(({ elapsed }) => { + // console.log(elapsed) +})