1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-05 08:53:14 +00:00
Files
seahub/frontend/src/css/layout.css

30 lines
430 B
CSS
Raw Normal View History

2018-09-12 17:01:48 +08:00
.side-panel {
flex: 1 1 20%;
}
.main-panel {
flex: 1 1 80%;
}
.side-panel-north,
.main-panel-north {
padding: .5rem 1rem;
background: #f4f4f7;
border-bottom: 1px solid #e8e8e8;
display: flex;
flex-shrink: 0;
}
.side-panel-center {
flex: 1;
display: flex;
flex-direction: column;
border-right: 1px solid #eee;
min-height: 0;
}
.main-panel-center {
flex: 1;
display: flex;
flex-direction: column;
2018-09-12 17:01:48 +08:00
}