优化安装引导ui
This commit is contained in:
parent
786dfccbfd
commit
3e76716d36
|
|
@ -83,6 +83,11 @@
|
|||
</div>
|
||||
</div>
|
||||
@yield('scripts')
|
||||
</body>
|
||||
|
||||
<script>
|
||||
$(document).ready(function() {
|
||||
$('html, body').css('height', $(window).height());
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in New Issue