7f1d731dc6
* refactor: config() from mutation to query * refactor(cp-frontend): remove unused dependency * feat(portal-watch): expose getContainers() and compose tags * fix(portal-watch): assert services by name AND hash * feat(portal-data): expose importable and import APIs * fix(portal-data): add missing dependencies * feat(portal-api): expose import/importable * feat(cp-gql-schema): add import/importable * feat(cp-frontend): import existing project * style(portal-watch): lint * style(portal-data): lint * chore: update lockfile
32 lines
623 B
HTML
32 lines
623 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico">
|
|
<title>React App</title>
|
|
<style>
|
|
.CodeMirror, .ReactCodeMirror {
|
|
height: 100% !important;
|
|
}
|
|
|
|
.CodeMirror {
|
|
border: solid 1px #d8d8d8;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
html, body, #root {
|
|
height: 100%;
|
|
}
|
|
|
|
#root {
|
|
display: flex;
|
|
flex-flow: column;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
</body>
|
|
</html>
|