优化安装引导ui

This commit is contained in:
pushuo 2022-09-19 17:58:37 +08:00
parent 786dfccbfd
commit 3e76716d36
2 changed files with 10 additions and 2 deletions

View File

@ -83,6 +83,11 @@
</div>
</div>
@yield('scripts')
</body>
<script>
$(document).ready(function() {
$('html, body').css('height', $(window).height());
});
</script>
</body>
</html>

View File

@ -14,8 +14,9 @@ body {
.install-box {
background-color: #f3f6f8;
display: flex;
height: 100vh;
// height: 100vh;
margin: auto;
height: 100%;
> .aside-wrap {
width: 30%;
@ -25,6 +26,7 @@ body {
display: flex;
flex-direction: column;
justify-content: space-between;
overflow-y: auto;
@media (max-width: 768px) {
padding: 20px;
@ -34,6 +36,7 @@ body {
> .content {
flex: 1;
padding: 40px 60px;
overflow-y: auto;
}
.language-switch {