13 lines
160 B
CSS
13 lines
160 B
CSS
nav {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-shrink: 0;
|
|
height: 100%;
|
|
}
|
|
|
|
.navbar {
|
|
width: 200px;
|
|
background-color: #ffffff;
|
|
padding: 20px;
|
|
}
|