Fix mobile display of login/register/first-time-setup
parent
f104c58c0d
commit
7dc19b9686
|
@ -7,8 +7,8 @@
|
||||||
ViewData["Title"] = "First Time Setup";
|
ViewData["Title"] = "First Time Setup";
|
||||||
}
|
}
|
||||||
|
|
||||||
<div class="ant-row ant-row-middle ant-row-space-around" style="position: absolute; top:0; left: 0; right: 0; bottom: 0;">
|
<div class="ant-row ant-row-middle ant-row-space-around" style="min-height: 100vh; margin-top: -24px;">
|
||||||
<div class="ant-col ant-col-10">
|
<div class="ant-col ant-col-xs-24 ant-col-md-10">
|
||||||
|
|
||||||
<div style="text-align: center; margin-bottom: 24px;">
|
<div style="text-align: center; margin-bottom: 24px;">
|
||||||
<img src="~/static/logo.svg" />
|
<img src="~/static/logo.svg" />
|
||||||
|
|
|
@ -6,8 +6,8 @@
|
||||||
ViewData["Title"] = "Log in";
|
ViewData["Title"] = "Log in";
|
||||||
}
|
}
|
||||||
|
|
||||||
<div class="ant-row ant-row-middle ant-row-space-around" style="position: absolute; top:0; left: 0; right: 0; bottom: 0;">
|
<div class="ant-row ant-row-middle ant-row-space-around" style="min-height: 100vh; margin-top: -24px;">
|
||||||
<div class="ant-col ant-col-10">
|
<div class="ant-col ant-col-xs-24 ant-col-md-10">
|
||||||
|
|
||||||
<div style="text-align: center; margin-bottom: 24px;">
|
<div style="text-align: center; margin-bottom: 24px;">
|
||||||
<img src="~/static/logo.svg" />
|
<img src="~/static/logo.svg" />
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
ViewData["Title"] = "Register";
|
ViewData["Title"] = "Register";
|
||||||
}
|
}
|
||||||
|
|
||||||
<div class="ant-row ant-row-middle ant-row-space-around" style="position: absolute; top:0; left: 0; right: 0; bottom: 0;">
|
<div class="ant-row ant-row-middle ant-row-space-around" style="min-height: 100vh; margin-top: -24px;">
|
||||||
<div class="ant-col ant-col-10">
|
<div class="ant-col ant-col-xs-24 ant-col-md-10">
|
||||||
|
|
||||||
<div style="text-align: center; margin-bottom: 24px;">
|
<div style="text-align: center; margin-bottom: 24px;">
|
||||||
<img src="~/static/logo.svg" />
|
<img src="~/static/logo.svg" />
|
||||||
|
|
|
@ -9,7 +9,11 @@
|
||||||
<link href="~/css/site.css" rel="stylesheet" />
|
<link href="~/css/site.css" rel="stylesheet" />
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
@RenderBody()
|
<section class="layout ant-layout">
|
||||||
|
<main class="ant-layout-content" style="padding: 24px; min-height: 100vh;">
|
||||||
|
@RenderBody()
|
||||||
|
</main>
|
||||||
|
</section>
|
||||||
|
|
||||||
<script src="~/lib/jquery/dist/jquery.min.js"></script>
|
<script src="~/lib/jquery/dist/jquery.min.js"></script>
|
||||||
<script src="~/lib/antv/g2plot/dist/g2plot.js"></script>
|
<script src="~/lib/antv/g2plot/dist/g2plot.js"></script>
|
||||||
|
|
Loading…
Reference in New Issue