Skip to content

Commit

Permalink
Fix the size of the small checkbox/radio componenets (#536)
Browse files Browse the repository at this point in the history
  • Loading branch information
rjaros committed Aug 6, 2024
1 parent 8ac69f2 commit d3c4895
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 16 deletions.
8 changes: 4 additions & 4 deletions .kotlin-js-store/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1780,10 +1780,10 @@ kind-of@^6.0.2:
resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd"
integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==

kvision-assets@8.0.10, kvision-assets@8.0.11:
version "8.0.11"
resolved "https://registry.yarnpkg.com/kvision-assets/-/kvision-assets-8.0.11.tgz#85e21c749dae4e1e5d077a89f3eb0f04ef2f38f2"
integrity sha512-9/a9Cg73WNJb7Hu8l/ZGO0HuYfo8k9/IQeLy2mM/eGpWKSjyAROJ4YZTMH65ApaFgNLTouIqHsklNN6HhKh8JA==
kvision-assets@8.0.11, kvision-assets@8.0.12:
version "8.0.12"
resolved "https://registry.yarnpkg.com/kvision-assets/-/kvision-assets-8.0.12.tgz#1251c10924543ab938e1774e49ee5bfa135ee967"
integrity sha512-d9lfDc6ZmVFV545FSFUcUwnKrolYJw30bzcmBUlTELo0kzUj0WB7aSSLkLPus8K/7VyZ6FS14lkBWajKvcXyrQ==

leaflet@1.9.4:
version "1.9.4"
Expand Down
2 changes: 1 addition & 1 deletion kvision-assets/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ npmPublish {
}
packageJson {
main.set("index.js")
version.set("8.0.11")
version.set("8.0.12")
description.set("The assets for the KVision framework")
keywords.set(listOf("kvision", "kotlin"))
homepage.set("https://kvision.io")
Expand Down
16 changes: 5 additions & 11 deletions kvision-assets/src/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -233,15 +233,6 @@ label.form-check-label.required-label > span:last-child::after {
height: inherit;
}

.form-check .form-check-input.form-control-sm {
height: 14px;
min-height: 14px;
margin-left: -1.7em;
width: 14px;
padding: .25rem;
margin-top: 8px;
}

.form-check-inline {
margin-left: 3px;
}
Expand Down Expand Up @@ -623,9 +614,12 @@ select.form-select:invalid {
}

.form-check .form-check-input.form-control-sm {
height: 18px;
min-height: 18px;
height: 14px;
min-height: 14px;
margin-left: -1.7em;
width: 14px;
padding: .25rem;
margin-top: 8px;
}

.form-check .form-check-input.form-control-lg {
Expand Down

0 comments on commit d3c4895

Please sign in to comment.