Files
Raphael S. aaf596c395 feat: reorganize article components and improve layout
- Refactor article components to enhance readability and maintainability.
- Introduce new layout for article header and content with improved styling.
- Update imports and remove unused files for better code clarity.
- Add new NotFound component for handling 404 errors with user-friendly messaging.
2026-01-06 21:05:41 +00:00

30 lines
483 B
CSS

.container {
display: flex;
flex-direction: column;
gap: 16px;
align-items: center;
justify-content: center;
height: 100vh;
padding: 0 24px;
}
.title {
font-size: 32px;
font-weight: var(--font-weight-semibold);
color: var(--gray-12);
letter-spacing: var(--font-letter-spacing-32px);
}
.message {
font-size: 14px;
color: var(--gray-10);
text-align: center;
letter-spacing: var(--font-letter-spacing-14px);
}
.actions {
display: flex;
gap: 8px;
}