Commit 029460e2 authored by Ryan Harris's avatar Ryan Harris

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

parent 336d7a79
......@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment