Skip to content

Instantly share code, notes, and snippets.

@catindev
Created January 24, 2016 15:59
Show Gist options
  • Select an option

  • Save catindev/1cbbddb13d6b2b600125 to your computer and use it in GitHub Desktop.

Select an option

Save catindev/1cbbddb13d6b2b600125 to your computer and use it in GitHub Desktop.
Buttons group
/* 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