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>
|
<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 -->
|
<!-- Dashboard Content -->
|
||||||
<div class="p-6 space-y-6">
|
<div class="p-6 space-y-6">
|
||||||
<!-- Welcome Section -->
|
<!-- Welcome Section -->
|
||||||
|
|
@ -142,8 +142,5 @@ const visibleDuesMembers = ref([
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
/* Ensure Tailwind is working */
|
/* Glass dashboard styles */
|
||||||
@import 'tailwindcss/base';
|
|
||||||
@import 'tailwindcss/components';
|
|
||||||
@import 'tailwindcss/utilities';
|
|
||||||
</style>
|
</style>
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<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 -->
|
<!-- Glass Sidebar -->
|
||||||
<GlassSidebar
|
<GlassSidebar
|
||||||
:is-open="sidebarOpen"
|
:is-open="sidebarOpen"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue