安装less

This commit is contained in:
禺狨 2023-03-03 13:52:52 +08:00
parent 4fa5daa326
commit 94ee5b9f0a
2 changed files with 33 additions and 38 deletions

View File

@ -2,27 +2,24 @@
width: 100%; width: 100%;
height: 100vh; height: 100vh;
display: flex; display: flex;
} .left-menu {
width: 200px;
}
.right-cont {
width: calc(100% - 200px);
display: flex;
flex-direction: column;
.right-top {
width: 100%;
height: 48px;
}
.left-menu { .right-main {
width: 200px; flex: 1;
} box-sizing: border-box;
padding: 24px;
.right-cont { overflow-y: auto;
width: calc(100% - 200px); background-color: #f1f2f9;
display: flex; }
flex-direction: column; }
}
.right-top {
width: 100%;
height: 48px;
}
.right-main {
flex: 1;
box-sizing: border-box;
padding: 24px;
overflow-y: auto;
background-color: #f1f2f9;
} }

View File

@ -3,20 +3,18 @@
float: left; float: left;
height: 100%; height: 100%;
background-color: #fff; background-color: #fff;
} .login-box {
width: 1200px;
.login-box { height: 500px;
width: 1200px; margin-left: auto;
height: 500px; margin-right: auto;
margin-left: auto; margin-top: 150px;
margin-right: auto; .captcha {
margin-top: 150px; width: 120px;
} height: 48px;
margin-left: 10px;
.captcha { cursor: pointer;
width: 120px; cursor: pointer;
height: 48px; }
margin-left: 10px; }
cursor: pointer;
cursor: pointer;
} }