Commit 15317419 authored by Mark Otto's avatar Mark Otto

fixes #4577: no margin on .control-row .span* in responsive

parent 8a5dde55
...@@ -846,6 +846,9 @@ ...@@ -846,6 +846,9 @@
display: inline-block; display: inline-block;
width: auto; width: auto;
} }
.controls-row [class*="span"] + [class*="span"] {
margin-left: 0;
}
.modal { .modal {
position: fixed; position: fixed;
top: 20px; top: 20px;
......
...@@ -90,6 +90,9 @@ ...@@ -90,6 +90,9 @@
display: inline-block; // redeclare so they don't wrap to new lines display: inline-block; // redeclare so they don't wrap to new lines
width: auto; width: auto;
} }
.controls-row [class*="span"] + [class*="span"] {
margin-left: 0;
}
// Modals // Modals
.modal { .modal {
......
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