fix(aio): api list column overflow fix (#17300)

This commit is contained in:
Stefanie Fluin 2017-06-08 11:54:57 -07:00 committed by Igor Minar
parent e9886d701d
commit 67ef0f0c8f
1 changed files with 4 additions and 3 deletions

View File

@ -165,21 +165,22 @@ $tablet-breakpoint: 800px;
.docs-content .api-list { .docs-content .api-list {
list-style: none; list-style: none;
margin: 0 0 48px 0; margin: 0 0 48px -8px;
padding: 0; padding: 0;
overflow: hidden; overflow: hidden;
@media screen and (max-width: 600px) { @media screen and (max-width: 600px) {
margin: 0; margin: 0 0 0 -8px;
} }
li { li {
font-size: 14px; font-size: 14px;
margin: 0 0 16px 0; margin: 8px;
line-height: 14px; line-height: 14px;
padding: 0; padding: 0;
float: left; float: left;
width: 33%; width: 33%;
overflow: hidden;
min-width: 220px; min-width: 220px;
text-overflow: ellipsis; text-overflow: ellipsis;
white-space: nowrap; white-space: nowrap;