23 lines
580 B
HTML
23 lines
580 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="UTF-8" />
|
||
|
<title>amis admin</title>
|
||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
|
||
|
<style>
|
||
|
html, body, .app-root {
|
||
|
position: relative;
|
||
|
display: flex;
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="app-root" class="app-root"></div>
|
||
|
</body>
|
||
|
</html>
|