Skip to content

Commit

Permalink
Fix white space
Browse files Browse the repository at this point in the history
  • Loading branch information
cpsievert committed Jun 1, 2021
1 parent 9d9e3aa commit 0c89d00
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions inst/www/shared/selectize/scss/selectize.bootstrap5.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
$input-line-height-sm: $form-select-line-height !default;
@import 'selectize.bootstrap4';
.selectize-control{padding:0;}
@import 'selectize.bootstrap4';
.selectize-control{padding:0;}
9 changes: 5 additions & 4 deletions tools/updateSelectize.R
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,11 @@ invisible(lapply(sass_files, function(f) {

# Add rudimentary Bootstrap 5 support
# https://github.com/selectize/selectize.js/issues/1584
writeLines(
"$input-line-height-sm: $form-select-line-height !default;
@import 'selectize.bootstrap4';
.selectize-control{padding:0;}",
writeLines(c(
"$input-line-height-sm: $form-select-line-height !default;",
"@import 'selectize.bootstrap4';",
".selectize-control{padding:0;}"
),
file.path(target, "scss", "selectize.bootstrap5.scss")
)

Expand Down

0 comments on commit 0c89d00

Please sign in to comment.