-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (30 loc) · 900 Bytes
/
index.html
File metadata and controls
33 lines (30 loc) · 900 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
<!doctype html>
<html>
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Content Manager</title>
<style>
div[class*="-AppMainContainer"] {
width: 100% !important;
min-width: 0 !important;
}
div[class*="-EditorContainer"] {
min-width: 0 !important;
}
@media (max-width: 800px) {
aside[class*="-SidebarContainer-"] {
position: relative !important;
margin-bottom: 16px !important;
}
main[class*="-CollectionMain"] {
padding-left: 0 !important;
}
}
</style>
</head>
<body>
<!-- Include the script that builds the page and powers Netlify CMS -->
<script src="https://unpkg.com/netlify-cms@^2.0.0/dist/netlify-cms.js"></script>
</body>
</html>