26 lines
337 B
SCSS
Raw Normal View History

2019-09-26 11:11:22 +09:00
.container {
2019-09-26 14:38:21 +09:00
height: 100%;
2019-10-21 13:20:14 +09:00
display:flex;
flex-flow: row;
2019-09-18 15:02:21 +09:00
2019-09-26 14:38:21 +09:00
.left-side {
2019-10-21 13:20:14 +09:00
width: 380px;
2019-09-26 14:38:21 +09:00
height: 100%;
2019-10-21 13:20:14 +09:00
flex: 0 0 auto;
2019-09-26 14:38:21 +09:00
}
.contents {
2019-10-21 13:20:14 +09:00
flex:1 1 auto;
min-width:400px;
2019-09-26 14:38:21 +09:00
height: 100%;
2019-10-08 18:12:58 +09:00
.messages {
width: 100%;
height: 100%;
}
2019-09-26 14:38:21 +09:00
}
.right-side {
height: 100%;
2019-10-21 13:20:14 +09:00
flex: 0 0 auto;
2019-09-26 14:38:21 +09:00
}
2019-09-18 15:02:21 +09:00
}