Skip to content
New issue

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

add semicolons to appease a brittle parser #1105

Merged
merged 3 commits into from
Aug 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion inst/components/scss/sidebar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ $bslib-sidebar-column-sidebar: Min(calc(100% - var(--_padding-icon)), var(--_sid
.bslib-sidebar-layout {
&, &.sidebar-right {
// Remove sidebar borders in mobile view (except always-open, added below)
> .sidebar { border: none }
> .sidebar { border: none; }

// Main area takes up entire layout area to avoid layout shift when
// sidebar is expanded as an overlay.
Expand Down
4 changes: 2 additions & 2 deletions inst/components/scss/value_box.scss
Original file line number Diff line number Diff line change
Expand Up @@ -85,15 +85,15 @@ $bslib-value-box-horizontal-break-point: 300px !default;
@include bootstrap-heading-font-and-spacing($h6-font-size);
// add a non-breaking space to ensure it's not 0 height
&:empty::after {
content: '\00a0 '
content: '\00a0 ';
}
}

.value-box-value {
@include bootstrap-heading-font-and-spacing($h2-font-size);
// add a non-breaking space to ensure it's not 0 height
&:empty::after {
content: '\00a0 '
content: '\00a0 ';
}
}

Expand Down
Loading