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 @@ ...@@ -22,6 +22,9 @@
} }
.row-content-block { .row-content-block {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
margin-top: 0; margin-top: 0;
margin-bottom: -$gl-padding; margin-bottom: -$gl-padding;
background-color: $gray-light; background-color: $gray-light;
...@@ -82,8 +85,15 @@ ...@@ -82,8 +85,15 @@
} }
.block-controls { .block-controls {
float: right; display: -webkit-box;
margin-top: -36px; 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 { .control {
float: left; 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