Files
2015-06-03 14:56:37 -05:00

41 lines
661 B
SCSS

// Search Bar
// --------------------------------------------------
$search-bar-min-height: 44px !default;
.search-bar {
position: relative;
display: flex;
align-items: center;
width: 100%;
min-height: $search-bar-min-height;
}
.search-bar-icon {
// Don't let them tap on the icon
pointer-events: none;
}
.search-bar-input-container {
position: relative;
display: block;
flex-shrink: 1;
width: 100%;
}
input[type="search"].search-bar-input {
display: block;
width: 100%;
height: 100%;
border: none;
font-family: inherit;
line-height: 3rem;
@include appearance(none);
}
.search-bar-cancel {
display: none;
}