Commit dc702c17 authored by Ryan Harris's avatar Ryan Harris

Added class to .row-content-block to allow custom flexbox styling

parent 029460e2
...@@ -22,9 +22,6 @@ ...@@ -22,9 +22,6 @@
} }
.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;
...@@ -86,13 +83,10 @@ ...@@ -86,13 +83,10 @@
.block-controls { .block-controls {
display: -webkit-box; display: -webkit-box;
display: -ms-flexbox;
display: flex; display: flex;
-webkit-box-pack: end; -webkit-box-pack: end;
-ms-flex-pack: end;
justify-content: flex-end; justify-content: flex-end;
-webkit-box-flex: 1; -webkit-box-flex: 1;
-ms-flex: 1;
flex: 1; flex: 1;
.control { .control {
...@@ -293,3 +287,8 @@ ...@@ -293,3 +287,8 @@
} }
} }
} }
.flex-container-block {
display: -webkit-box;
display: flex;
}
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
= render "head" = render "head"
%div{ class: container_class } %div{ class: container_class }
.row-content-block.second-block.content-component-block .row-content-block.second-block.content-component-block.flex-container-block
.tree-ref-holder .tree-ref-holder
= render 'shared/ref_switcher', destination: 'commits' = render 'shared/ref_switcher', destination: 'commits'
......
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