Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
aos
GitHub Repository: aos/grafana-agent
Path: blob/main/web/ui/src/features/layout/Page.module.css
5283 views
1
div.page {
2
display: flex;
3
flex-direction: column;
4
height: 100%;
5
6
max-width: 1440px;
7
margin-left: auto;
8
margin-right: auto;
9
}
10
11
div.page main {
12
background-color: #ffffff;
13
margin: 0px 16px 16px 16px;
14
padding: 8px;
15
flex-grow: 1;
16
box-sizing: border-box;
17
border: 1px solid #e4e5e6;
18
border-radius: 3px;
19
20
overflow: auto;
21
}
22
23
.header {
24
display: flex;
25
font-family: 'Roboto', sans-serif;
26
padding: 24px;
27
height: 50px;
28
align-items: center;
29
}
30
31
.header .icon {
32
width: 50px;
33
margin-right: 10px;
34
}
35
36
.header .icon svg {
37
height: 35px;
38
width: 100%;
39
color: rgba(36, 41, 46, 0.75);
40
}
41
42
.header h1, .header h2 {
43
padding: 0px;
44
margin: 0px;
45
}
46
47
.header h1 {
48
font-size: 24px;
49
font-weight: 400;
50
color: rgb(36, 41, 46);
51
margin-bottom: 4px;
52
}
53
54
.header h2 {
55
font-size: 14px;
56
font-weight: 400;
57
color: rgba(36, 41, 46, 0.75);
58
}
59
60
61
62