2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-20 20:00:36 +03:00

fixes #3900: nudge badges in buttons up 1px

This commit is contained in:
Mark Otto
2012-07-30 13:25:27 -07:00
parent b2ebd5c46c
commit a9bf1e6e35
3 changed files with 17 additions and 1 deletions
+9
View File
@@ -55,3 +55,12 @@ a {
&-inverse { background-color: @grayDark; }
&-inverse[href] { background-color: darken(@grayDark, 10%); }
}
// Quick fix for labels/badges in buttons
.btn {
.label,
.badge {
position: relative;
top: -1px;
}
}