Skip to content

Latest commit

 

History

History
12 lines (11 loc) · 271 Bytes

searchOverlapCSS.md

File metadata and controls

12 lines (11 loc) · 271 Bytes

Overview

This fixes the reported issue with search text overlapping search scope suggestions on mobile.

CSS

/* fix overlapping text in main search bar */
md-autocomplete-parent-scope {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}