Change the row-content-block menu on the commits page to a flexbox container

This commit is contained in:
Ryan Harris 2017-01-09 21:08:45 -05:00
parent 336d7a7992
commit 029460e258

View file

@ -22,6 +22,9 @@
}
.row-content-block {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
margin-top: 0;
margin-bottom: -$gl-padding;
background-color: $gray-light;
@ -82,8 +85,15 @@
}
.block-controls {
float: right;
margin-top: -36px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: end;
-ms-flex-pack: end;
justify-content: flex-end;
-webkit-box-flex: 1;
-ms-flex: 1;
flex: 1;
.control {
float: left;