wingrunr21 / flat-ui-sass

Designmodo's Flat-UI ported to SASS with support for Flat-UI Pro
MIT License
156 stars 44 forks source link

Dropdown button styles are different #42

Open fareez-ahamed opened 9 years ago

fareez-ahamed commented 9 years ago

I was trying to create a dropdown button and it looks unusual

Here is my code with angular js and angular-bootstrap...

<div class="btn-group" dropdown>
    <button type="button" class="btn btn-primary dropdown-toggle" dropdown-toggle>Button dropdown <span class="caret"></span>
    </button>
    <ul class="dropdown-menu" role="menu">
        <li ng-repeat="value in options">
            <a>{{value}}</a>
        </li>
    </ul>
</div>

Gives this look,

flat-sass

Where as the same code with plain bootstrap looks normal

bootstrap

But the flat-ui site shows the dropdown like this,

flat-ui