20 lines
260 B
SCSS
20 lines
260 B
SCSS
.container {
|
|
height: 100%;
|
|
|
|
.left-side {
|
|
float: left;
|
|
width: 300px;
|
|
height: 100%;
|
|
}
|
|
.contents {
|
|
float: left;
|
|
width: calc(100% - 360px);
|
|
height: 100%;
|
|
}
|
|
.right-side {
|
|
float: left;
|
|
width: 60px;
|
|
height: 100%;
|
|
}
|
|
}
|