mirror of
https://github.com/raphaelsalaja/userinterface-wiki.git
synced 2026-09-14 20:06:29 +08:00
aaf596c395
- 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.
30 lines
483 B
CSS
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;
|
|
}
|