46 lines
695 B
SCSS
46 lines
695 B
SCSS
.layout {
|
|
width: 100%;
|
|
display: flex;
|
|
overflow: hidden;
|
|
|
|
&__sidebar {
|
|
position: relative;
|
|
flex: 1 0 25%;
|
|
height: 100vh;
|
|
max-width: 225px;
|
|
min-width: 125px;
|
|
overflow: hidden auto;
|
|
}
|
|
|
|
&__content {
|
|
position: relative;
|
|
flex: 1 1 75%;
|
|
height: 100vh;
|
|
overflow: overlay;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
&__logo {
|
|
width: 100%;
|
|
height: auto;
|
|
max-width: 180px;
|
|
max-height: 180px;
|
|
margin: 0 auto;
|
|
padding: 8px 8px 0;
|
|
user-select: none;
|
|
text-align: center;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
&__traffic {
|
|
position: absolute;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 8px;
|
|
|
|
> div {
|
|
margin: 0 auto;
|
|
}
|
|
}
|
|
}
|