refactor: reorganize component organization

This commit is contained in:
Chuma McPhoy
2024-07-12 11:30:57 +02:00
parent 1cf329bc03
commit 85aded18b4
5 changed files with 34 additions and 37 deletions

View File

@@ -0,0 +1,25 @@
.content {
display: grid;
grid-template-rows: min-content auto;
gap: var(--Spacing-x4);
height: 100%;
padding: var(--Spacing-x4) var(--Spacing-x5);
}
.header {
display: flex;
justify-content: flex-end;
}
.header:has(> h2) {
justify-content: space-between;
}
.closeBtn {
border: none;
background-color: transparent;
display: flex;
align-items: center;
padding: 0;
cursor: pointer;
}