Commit ecb6a69f by AlasdairSwan

ECOM-369 Reunited the missing line with the rest of the page elements and fixed…

ECOM-369 Reunited the missing line with the rest of the page elements and fixed an error with HTML5 validation override
parent 2fc2207b
......@@ -168,7 +168,9 @@ var edx = edx || {};
// Removes the default HTML5 validation pop-up
removeDefault: function( $el ) {
$el.setCustomValidity(' ');
if ( $el.setCustomValidity ) {
$el.setCustomValidity(' ');
}
}
}
};
......
......@@ -90,7 +90,7 @@
@include span-columns(4);
padding: 25px 10px;
&:first-of-type {
&:nth-of-type(2) {
border-bottom: 1px solid $gray-l4;
}
}
......
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