2021-12-09 23:28:57 +08:00

30 lines
385 B
SCSS

.layout {
width: 100%;
height: 100%;
display: flex;
&__sidebar {
position: relative;
height: 100vh;
flex: 1 0 25%;
max-width: 250px;
}
&__content {
flex: 1 1 75%;
padding: 20px 30px;
box-sizing: border-box;
}
&__traffic {
position: absolute;
left: 0;
right: 0;
bottom: 18px;
> div {
margin: 0 auto;
}
}
}