0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-24 22:52:40 +00:00
Files
homebrewery/shared/naturalcrit/splitPane/splitPane.less
2021-10-19 23:19:26 +13:00

36 lines
678 B
Plaintext

.splitPane{
position : relative;
display : flex;
height : 100%;
outline : none;
flex-direction : row;
.pane{
overflow-x : hidden;
overflow-y : hidden;
flex : 1;
}
.divider{
display : table;
height : 100%;
width : 12px;
cursor : ew-resize;
background-color : #bbb;
text-align : center;
.dots{
display : table-cell;
vertical-align : middle;
text-align : center;
i{
display : block;
margin : 10px 0px;
font-size : 6px;
color : #666;
}
}
&:hover{
background-color: #999;
}
}
}