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

Fix 1px width difference between banner and tray #349

Merged
merged 1 commit into from
Dec 24, 2023
Merged
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
3 changes: 2 additions & 1 deletion lib/rdoc/generator/template/rails/resources/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -342,6 +342,7 @@ html {
.banner {
height: var(--banner-height);
background-color: var(--brand-color);
box-shadow: 1px 0px var(--brand-color); /* Match .panel_tray width on desktop */
}

.banner__segment {
Expand Down Expand Up @@ -658,7 +659,7 @@ html {

.panel__tray {
height: unset;
border-right: 1px solid color-mix(in srgb, currentColor 25%, transparent);
box-shadow: 1px 0 color-mix(in srgb, currentColor 25%, transparent);
}

.panel__results.active {
Expand Down