We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If an awesomeCheckbox is at the bottom of the page it adds extra space at the bottom of the page when triggered. For example:
awesomeCheckbox
library(shiny) library(bslib) library(shinyWidgets) ui = page_fillable( layout_sidebar( sidebar( div(style = "height: 800px;"), awesomeCheckbox( "awesomeCheckbox", label = NULL ) ) ) ) shinyApp(ui, server = function(input,output) { } )
Setting its position attribute to relative mitigates this behavior:
position
relative
library(shiny) library(bslib) library(shinyWidgets) ui = page_fillable( tags$style(".awesome-checkbox { position: relative; }"), layout_sidebar( sidebar( div(style = "height: 800px;"), awesomeCheckbox( "awesomeCheckbox", label = NULL ) ) ) ) shinyApp(ui, server = function(input,output) { } )
The text was updated successfully, but these errors were encountered:
Hello,
Your example produce something weird for me (bslib v0.5.1), with something simpler I do not see any problem:
library(shiny) library(bslib) library(shinyWidgets) ui = page_fluid( div(style = "height: 800px;"), awesomeCheckbox( "awesomeCheckbox", label = NULL ) ) shinyApp(ui, server = function(input,output) { } )
Sorry, something went wrong.
No branches or pull requests
If an
awesomeCheckbox
is at the bottom of the page it adds extra space at the bottom of the page when triggered. For example:Setting its
position
attribute torelative
mitigates this behavior:The text was updated successfully, but these errors were encountered: