Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

250 fix users scrolling #255

Merged
merged 5 commits into from
Jan 9, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion components/website-utils/OuterComponents.vue
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ if (
class="vis min-h-screen h-screen max-w-full"
>
<UCard
class="h-full"
class="h-full fixed w-[20em]"
:ui="{ rounded: 'rounded-none' }"
>
<UVerticalNavigation :links="links" />
Expand Down
19 changes: 18 additions & 1 deletion nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ export default defineNuxtConfig({
})
},
],

webpack: {
aggressiveCodeRemoval: true,
optimization: {
Expand All @@ -29,6 +30,7 @@ export default defineNuxtConfig({
}
},
},

nitro: {
preset: 'bun',
compressPublicAssets: {
Expand All @@ -37,6 +39,7 @@ export default defineNuxtConfig({
},

},

app: {
head: {
script: [
Expand All @@ -46,10 +49,12 @@ export default defineNuxtConfig({
]
}
},

build: {
transpile: ['vuetify'],

},

// speedkit: {
//
// detection: {
Expand Down Expand Up @@ -101,6 +106,7 @@ export default defineNuxtConfig({
vimeo: 'https://i.vimeocdn.com',
}
},

// buildModules: [
// 'nuxt-speedkit',
// '@nuxtjs/pwa'
Expand Down Expand Up @@ -154,25 +160,31 @@ export default defineNuxtConfig({
type: 'module',
},
},

plugins: [
'~/plugins/vuetify.ts'
],

devtools: {
enabled: true,

timeline: {
enabled: true
}
},

ssr: false,

vite: {
vue: {
template: {
transformAssetUrls,
}
}
},

logLevel: "verbose",

runtimeConfig:{
tbaKey: process.env.NUXT_TBA_KEY,
couchDB: {
Expand All @@ -183,13 +195,16 @@ export default defineNuxtConfig({
}
}
},

sourcemap: {
server: true,
client: true
},

colorMode: {
preference: 'light' //eventually we will add color mode preference
},

tailwindcss:{
config:{
theme: {
Expand All @@ -215,5 +230,7 @@ export default defineNuxtConfig({
}
}
}
}
},

compatibilityDate: '2025-01-08'
})
7 changes: 6 additions & 1 deletion pages/dashboard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -553,7 +553,12 @@ async function updateTeamData() {
<div v-else>
<p class="font-medium text-xl text-center">No Events Scheduled</p>
<div class="flex-auto">
<img src="/public/sadcookie.png" height="140" width="140" class="mx-auto"/>
<img
src="/public/sadcookie.png"
height="140"
width="140"
class="mx-auto"
/>
</div>
</div>
</template>
Expand Down
Loading