Fix Tailwind build errors - remove style imports and fix gradient classes
Build And Push Image / docker (push) Successful in 1m49s
Details
Build And Push Image / docker (push) Successful in 1m49s
Details
This commit is contained in:
parent
6223388768
commit
5c72aa727c
Binary file not shown.
|
After Width: | Height: | Size: 54 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 426 KiB |
|
|
@ -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>
|
||||
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in New Issue