16 lines
231 B
CSS
Vendored
16 lines
231 B
CSS
Vendored
.wrapper {
|
|
display: flex;
|
|
width: 100%;
|
|
}
|
|
|
|
#sidebar {
|
|
width: 100px;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
height: 100vh;
|
|
z-index: 999;
|
|
background: #7386D5;
|
|
color: #fff;
|
|
transition: all 0.3s;
|
|
} |