Files
clash-proxy/src/assets/styles/layout.scss
2021-12-10 02:25:09 +08:00

32 lines
433 B
SCSS

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