Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDominik Crha <dominik.crha@gmail.com>2021-09-07 23:35:35 +0300
committerGitHub <noreply@github.com>2021-09-07 23:35:35 +0300
commitdbe0ad49ab82df038c8f88e0dae1da500e71b5f5 (patch)
tree5853509681692a46b2beba00faf9de9a771fb952 /scss/forms
parent94c80ff613dce6620591acd7f9930ce8f40c5ed0 (diff)
Add `border-radius` sizes to small and large `.form-select`s (#34853)
Fixes #34852 Co-authored-by: Dominik Crha <crha@havit.cz> Co-authored-by: XhmikosR <xhmikosr@gmail.com> Co-authored-by: Mark Otto <markd.otto@gmail.com>
Diffstat (limited to 'scss/forms')
-rw-r--r--scss/forms/_form-select.scss2
1 files changed, 2 insertions, 0 deletions
diff --git a/scss/forms/_form-select.scss b/scss/forms/_form-select.scss
index 4506a979ad..153ff6cd5c 100644
--- a/scss/forms/_form-select.scss
+++ b/scss/forms/_form-select.scss
@@ -60,6 +60,7 @@
padding-bottom: $form-select-padding-y-sm;
padding-left: $form-select-padding-x-sm;
@include font-size($form-select-font-size-sm);
+ @include border-radius($form-select-border-radius-sm);
}
.form-select-lg {
@@ -67,4 +68,5 @@
padding-bottom: $form-select-padding-y-lg;
padding-left: $form-select-padding-x-lg;
@include font-size($form-select-font-size-lg);
+ @include border-radius($form-select-border-radius-lg);
}