blob: 57800a4bf76536877d5909ed8d7214e89f15ba5d (
plain) (
blame)
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
/* Resets and Base Styles */
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* Dashboard Layout */
.dashboard {
display: flex;
flex-direction: column;
height: 100vh;
overflow: hidden;
/* Prevent body scroll */
}
.dashboard-header {
background: #2c3e50;
color: white;
padding: 0.75rem 1.5rem;
display: flex;
justify-content: space-between;
align-items: center;
flex-shrink: 0;
}
.dashboard-header h1 {
margin: 0;
font-size: 1.25rem;
font-weight: 600;
}
.dashboard-content {
display: flex;
flex: 1;
overflow: hidden;
}
.dashboard-sidebar {
width: 300px;
background: #f8f9fa;
border-right: 1px solid #ddd;
display: flex;
flex-direction: column;
overflow-y: auto;
}
.dashboard-main {
flex: 1;
padding: 2rem;
overflow-y: auto;
background: #fff;
}
|