- Add flash message helper and styles for consistent notifications - Replace Devise error messages with flash-based notifications - Add dashboard page with event statistics - Configure SMTP settings for development and production - Update authentication controllers to use flash messages - Add JavaScript controller for auto-dismiss functionality
13 lines
220 B
CSS
13 lines
220 B
CSS
/* Entry point for your PostCSS build */
|
|
|
|
/* Import Tailwind using PostCSS */
|
|
@import "tailwindcss";
|
|
|
|
/* Import flash message styles */
|
|
@import "components/flash";
|
|
|
|
/** Default text color */
|
|
body {
|
|
color: #555555;
|
|
}
|