From 7b41a3ed0db0092085f7edf7fdae396249d25f98 Mon Sep 17 00:00:00 2001 From: Arthur Santos Date: Wed, 4 Sep 2024 09:16:36 -0300 Subject: [PATCH] fix: css bug in header --- landing/layouts/header.vue | 6 +++--- landing/nuxt.config.ts | 34 ---------------------------------- 2 files changed, 3 insertions(+), 37 deletions(-) delete mode 100644 landing/nuxt.config.ts diff --git a/landing/layouts/header.vue b/landing/layouts/header.vue index 760119b..b48d8aa 100644 --- a/landing/layouts/header.vue +++ b/landing/layouts/header.vue @@ -51,7 +51,7 @@ onMounted(() => { Blog + class="poppins hover:text-text-sub/90 whitespace-nowrap"> Live demo @@ -85,9 +85,9 @@ onMounted(() => {
- +
diff --git a/landing/nuxt.config.ts b/landing/nuxt.config.ts deleted file mode 100644 index 1c74741..0000000 --- a/landing/nuxt.config.ts +++ /dev/null @@ -1,34 +0,0 @@ -// https://nuxt.com/docs/api/configuration/nuxt-config - -export default defineNuxtConfig({ - colorMode: { preference: 'dark', }, - devtools: { enabled: false }, - app: { - head: { - script: [ - { - src: 'https://cdn.jsdelivr.net/gh/litlyx/litlyx-js/browser/litlyx.js', - 'data-project': '6643cd08a1854e3b81722ab5', - defer: true - } - ] - } - }, - pages: true, - ssr: true, - routeRules: { - '/': { - prerender: true - }, - '/**': { - prerender: true - }, - }, - css: ['~/assets/scss/main.scss'], - modules: ['@nuxt/ui'], - devServer: { - host: '0.0.0.0', - }, - components: true, - extends: ['../lyx-ui'] -})