Merge pull request #88 from muyaszed/feature-menu-list

added class for inline list
This commit is contained in:
Rhyne 2017-11-29 10:20:49 -05:00 committed by GitHub
commit e7d27d5d1a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 0 deletions

View file

@ -446,6 +446,13 @@
</ul>
<li>And now we're are the top!</li>
</ul>
<h4>Inline List</h4>
<ul class="inline">
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
<li>Item 4</li>
</ul>
<div class="docs">
<pre>
&lt;ol&gt;

View file

@ -41,4 +41,8 @@ ul {
}
}
}
&.inline li{
display: inline;
margin-left: 5px;
}
}