-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathAdminPreview.module.css
More file actions
40 lines (35 loc) · 775 Bytes
/
AdminPreview.module.css
File metadata and controls
40 lines (35 loc) · 775 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
.container {
padding-top: 56px; /* Account for global header */
}
.header {
border-bottom: 1px solid var(--mantine-color-dark-4);
top: auto !important;
}
.main {
height: calc(100vh - 120px); /* Adjusted for global header */
overflow: hidden;
}
.content {
display: flex;
height: 100%;
}
.gridArea {
flex: 1;
display: flex;
justify-content: center;
align-items: center;
padding: var(--mantine-spacing-xl);
overflow: auto;
background: var(--mantine-color-dark-7);
}
.sidebar {
width: 320px;
flex-shrink: 0;
padding: var(--mantine-spacing-md);
border-left: 1px solid var(--mantine-color-dark-4);
overflow-y: auto;
display: flex;
flex-direction: column;
gap: var(--mantine-spacing-md);
background: var(--mantine-color-dark-6);
}