Files
notifications-admin/app/assets/stylesheets/components/live-search.scss
T

21 lines
306 B
SCSS
Raw Normal View History

input[type=search] {
// overrides this nasty global from GOV.UK template
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.live-search {
display: none;
.js-enabled & {
display: block;
}
2018-04-05 14:55:02 +01:00
.form-group {
2020-02-21 13:21:44 +00:00
margin-bottom: govuk-spacing(4);
2018-04-05 14:55:02 +01:00
}
}