mirror of
https://github.com/stolksdorf/homebrewery.git
synced 2025-12-22 09:41:30 +00:00
31 lines
607 B
Plaintext
31 lines
607 B
Plaintext
|
|
.splitPane{
|
|
position : relative;
|
|
display : flex;
|
|
height : 100%;
|
|
outline : none;
|
|
flex-direction : row;
|
|
.pane{
|
|
overflow-x : hidden;
|
|
flex : 1;
|
|
}
|
|
.divider{
|
|
display : table;
|
|
height : 100%;
|
|
width : 12px;
|
|
cursor : ew-resize;
|
|
background-color : #ddd;
|
|
text-align : center;
|
|
.dots{
|
|
display : table-cell;
|
|
vertical-align : middle;
|
|
text-align : center;
|
|
i{
|
|
display : block;
|
|
margin : 10px 0px;
|
|
font-size : 6px;
|
|
color : #666;
|
|
}
|
|
}
|
|
}
|
|
} |