16 lines
150 B
CSS
16 lines
150 B
CSS
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html, body {
|
|
margin: 0;
|
|
}
|
|
|
|
aside {
|
|
text-align: center;
|
|
width: 300px;
|
|
height: 100vh;
|
|
overflow-y: scroll;
|
|
}
|
|
|