Fix Tailwind build errors - remove style imports and fix gradient classes
Build And Push Image / docker (push) Successful in 1m49s Details

This commit is contained in:
Matt 2025-09-06 15:42:15 +02:00
parent 6223388768
commit 5c72aa727c
4 changed files with 3 additions and 6 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 426 KiB

View File

@ -1,5 +1,5 @@
<template>
<div class="min-h-screen bg-gradient-to-br from-gray-50 to-white">
<div class="min-h-screen" style="background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%)">
<!-- Dashboard Content -->
<div class="p-6 space-y-6">
<!-- Welcome Section -->
@ -142,8 +142,5 @@ const visibleDuesMembers = ref([
</script>
<style scoped>
/* Ensure Tailwind is working */
@import 'tailwindcss/base';
@import 'tailwindcss/components';
@import 'tailwindcss/utilities';
/* Glass dashboard styles */
</style>

View File

@ -1,5 +1,5 @@
<template>
<div class="min-h-screen bg-gradient-light">
<div class="min-h-screen" style="background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%)">
<!-- Glass Sidebar -->
<GlassSidebar
:is-open="sidebarOpen"