Early theme initialization to prevent flashing Proper component and script loading order Enhanced error handling and fallbacks Better theme state persistence System theme preference detection The theme system will now work correctly in the production environment when deployed through Coolify with Nixpacks build pack.
25 lines
366 B
CSS
25 lines
366 B
CSS
.container {
|
|
max-width: 800px;
|
|
margin: 0 auto;
|
|
padding: 0 1rem;
|
|
}
|
|
|
|
main {
|
|
margin-top: 2rem;
|
|
padding: 2rem 0;
|
|
}
|
|
|
|
section {
|
|
margin: 4rem 0;
|
|
opacity: 0;
|
|
transform: translateY(20px);
|
|
animation: fadeIn 0.6s ease forwards;
|
|
}
|
|
|
|
.mission-vision {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 2rem;
|
|
margin: 2rem 0;
|
|
}
|