Quarto Dashboard Help: Scrollbars getting added when using valuebox feature. How do I eliminate?

Greetings all,

I am experiencing some behavior that I can't quite figure out. When using valueboxes on quarto dashboards, it is

a) separating out the icon from the rest of the value box
b) adding a scroll bar to the icon side.

I have tried in both R and Python, and tested a variety of row heights and configurations. So far, nothing.

For example, the code below, produces the result below:

Any help or guidance you all can provide, I am extremely grateful. Thank you!
Brad

---
title: "Test Test"
author: "Brad Weiner"
format: 
  dashboard
---

```{r}
#| label: load-packages
#| message: false

library(tidyverse)
library(magrittr)
library(lubridate)
library(plotly)
```

## Row 

```{r}
#| component: valuebox
#| title: "Enrolled Students"
list(
  icon = "graph-down",
  color = "green",
  value = '10,446'
)
```

> quarto::quarto_version()
[1] ‘1.4.471’
               _                                
platform       x86_64-w64-mingw32               
arch           x86_64                           
os             mingw32                          
crt            ucrt                             
system         x86_64, mingw32                  
status                                          
major          4                                
minor          3.1                              
year           2023                             
month          06                               
day            16                               
svn rev        84548                            
language       R                                
version.string R version 4.3.1 (2023-06-16 ucrt)
nickname       Beagle Scouts 
> reticulate::py_versions_windows()
        type hive             install_path
1 PythonCore  HLM C:\\PROGRA~1\\PYTHON~1\\
                       executable_path version arch
1 C:\\PROGRA~1\\PYTHON~1\\\\python.exe    3.11  x64

Can you try already latest 1.4 pre-release ? I can't reproduce this with it. thanks

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.