mirror of
https://github.com/clash-verge-rev/clash-verge-rev
synced 2025-05-06 19:33:43 +08:00
29 lines
363 B
SCSS
29 lines
363 B
SCSS
.layout {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
|
|
&__sidebar {
|
|
position: relative;
|
|
height: 100vh;
|
|
flex: 1 1 25%;
|
|
}
|
|
|
|
&__traffic {
|
|
position: absolute;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 18px;
|
|
|
|
> div {
|
|
margin: 0 auto;
|
|
}
|
|
}
|
|
|
|
&__content {
|
|
flex: 1 1 75%;
|
|
padding: 20px 30px;
|
|
box-sizing: border-box;
|
|
}
|
|
}
|