- Rewrite ticket show view to use pure Tailwind CSS classes - Update color scheme from gray-* to slate-* for modern look - Replace indigo gradients with violet for better consistency - Enhance spacing, typography, and visual hierarchy - Add ticket_view route and controller action for PDF-like display - Implement responsive QR code display with proper sizing - Update status badge colors for better semantic meaning - Improve accessibility with better button layouts and focus states 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
29 lines
567 B
CSS
Executable File
29 lines
567 B
CSS
Executable File
/* Entry point for your PostCSS build */
|
|
|
|
/* Import Tailwind using PostCSS */
|
|
@import "tailwindcss";
|
|
|
|
/* Import our custom theme */
|
|
@import "theme";
|
|
|
|
/* Import components */
|
|
@import "components/hero";
|
|
@import "components/flash";
|
|
@import "components/event-finder";
|
|
|
|
/* Import pages */
|
|
@import "pages/home";
|
|
|
|
/* QR Code Styles */
|
|
.qr-code-container {
|
|
@apply flex items-center justify-center;
|
|
}
|
|
|
|
.qr-code-container svg {
|
|
max-width: 100% !important;
|
|
max-height: 100% !important;
|
|
width: 208px !important;
|
|
height: 208px !important;
|
|
display: block !important;
|
|
}
|