-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathdashboard.component.css
More file actions
129 lines (105 loc) · 2.16 KB
/
Copy pathdashboard.component.css
File metadata and controls
129 lines (105 loc) · 2.16 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
.mat-sidenav-container {
height: 100%;
/* height: calc(100vh - 56px); */
overflow-x: hidden !important;
}
.table-list-sidenav {
max-width: 240px;
}
@media (prefers-color-scheme: dark) {
.table-list-sidenav {
background-color: #202020;
}
}
@media (width <= 600px) {
.table-list-sidenav {
display: none;
}
}
.side-bar_collapsed {
position: static;
float: left;
display: block;
height: 100%;
width: 65px;
visibility: visible !important;
transform: translate3d(0, 0, 0);
}
@media (width <= 600px) {
.side-bar_collapsed {
display: none;
}
}
.table-list-sidenav-container ::ng-deep .mat-drawer-inner-container,
.side-bar_collapsed ::ng-deep .mat-drawer-inner-container {
overflow-y: auto !important;
overflow-x: hidden !important;
}
.table-list-sidenav-container ::ng-deep .mat-drawer:not(.mat-drawer-opened):not(.mat-drawer-animating) .mat-drawer-inner-container {
display: block;
}
.mat-list-item {
text-decoration: none;
}
.toggle-button {
margin-top: 8px;
margin-left: 12px;
}
.toggle-button-position button {
border-radius: 4px;
}
.toggle-button-position button mat-icon {
border-radius: 4px;
}
.toggle-button-position button:hover {
border-radius: 4px;
}
.toggle-button-position button:hover mat-icon {
border-radius: 4px;
}
.dashboard {
display: flex;
flex-direction: column;
height: calc(100vh - 60px - 56px);
max-width: 1000px;
margin: 20px auto;
widows: 96%;
}
.title {
align-self: center;
}
.alerts {
display: flex;
flex-direction: column;
gap: 8px;
margin-top: 24px;
margin-bottom: 16px;
}
.alerts app-alert {
position: initial;
}
.alerts app-alert:empty {
display: none;
}
.alerts:has(app-alert:only-child:empty) {
margin: 0;
}
.error-details {
margin-top: 8px;
}
.table-preview {
display: flex;
overflow-x: hidden;
height: calc(100vh - 44px);
}
.table-preview-content {
flex-grow: 1;
padding-bottom: 24px;
height: calc(100vh - 44px);
padding: 0 24px;
overflow-y: scroll;
width: 100%;
}
.sidenav-content__toggle-button {
display: none !important;
}