init projet

This commit is contained in:
2026-05-20 10:43:18 +02:00
parent 51f27903bb
commit 9a402b0b34
57 changed files with 5622 additions and 0 deletions
@@ -0,0 +1,43 @@
/* src/pages/Users/Users.module.css */
.page {
padding: 24px;
max-width: 1200px;
margin: 0 auto;
}
.header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 24px;
}
.title {
font-size: 28px;
font-weight: 600;
color: var(--color-text);
margin: 0;
}
.actions {
display: flex;
gap: 8px;
}
.actionBtn {
display: flex;
align-items: center;
gap: 4px;
padding: 4px 8px;
background: none;
border: none;
color: var(--color-link);
font-size: 12px;
cursor: pointer;
text-decoration: underline;
}
.actionBtn:hover {
color: var(--color-primary);
}