Created
January 24, 2016 15:59
-
-
Save catindev/1cbbddb13d6b2b600125 to your computer and use it in GitHub Desktop.
Buttons group
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Buttons group */ | |
| .buttons-group { | |
| .clearfix; | |
| display: inline-block; | |
| vertical-align: bottom; | |
| & .button { | |
| float: left; | |
| margin-left: -1px; | |
| border-radius: 0; | |
| &:first-child { | |
| border-radius: @global-radius 0 0 @global-radius; | |
| } | |
| &:last-child { | |
| border-radius: 0 @global-radius @global-radius 0; | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment