fix(tile-view): hide any horizontal overflow

This commit is contained in:
Leonard Kim 2018-08-17 09:03:04 -07:00 committed by yanas
parent 8d6e1b1872
commit 07ccb0a386
1 changed files with 3 additions and 2 deletions

View File

@ -62,9 +62,10 @@
box-sizing: border-box;
/**
* Allow scrolling of the thumbnails.
* Allow vertical scrolling of the thumbnails.
*/
overflow: auto;
overflow-x: hidden;
overflow-y: auto;
}
/**