R crosstalk package - modify filter_select height

61 Views Asked by At

Is there a way to reduce the height of filter_select?

Following css works for reducing the width but height doesn't seem to do anything for the height

I want to make the height shorter

<style>
.crosstalk-input-select {
  color: blue;
  width: 50%;
  height: 50%;  
}
</style>
library(crosstalk)
shared_mtcars <- SharedData$new(mtcars)
filter_select("auto", "Automatic", shared_mtcars, ~ifelse(am == 0, "Yes", "No"))
0

There are 0 best solutions below