diff options
| author | Mark Otto <[email protected]> | 2015-11-14 21:29:09 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2015-11-14 21:29:09 -0800 |
| commit | 36b33bd145af0ac212e7d6ce88cc9b7abc9f43fc (patch) | |
| tree | 8925183574a6c40cd0ef31c2c456fd8c1c8e6a2f | |
| parent | fd0d7e28fe6dbbc5338cdc3d31290ec2cbb347aa (diff) | |
| download | bootstrap-36b33bd145af0ac212e7d6ce88cc9b7abc9f43fc.tar.xz bootstrap-36b33bd145af0ac212e7d6ce88cc9b7abc9f43fc.zip | |
fixes #18241: bump up border-radius values on .label-pill for when customization means the 1rem value doesn't cut it
| -rw-r--r-- | scss/_labels.scss | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scss/_labels.scss b/scss/_labels.scss index 9dcc10e09..8b2f0f82a 100644 --- a/scss/_labels.scss +++ b/scss/_labels.scss @@ -43,7 +43,9 @@ a.label { .label-pill { padding-right: .6em; padding-left: .6em; - @include border-radius(1rem); + // Use a higher than normal value to ensure completely rounded edges when + // customizing padding or font-size on labels. + @include border-radius(10rem); } // Colors |
