Skip to content

fix: remove accidental scrollbar from deployment banner #10616

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

Merged
merged 3 commits into from
Nov 9, 2023
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
fix: remove extra scrollbar
  • Loading branch information
Parkreiner committed Nov 9, 2023
commit f7733081fd98489f1602ce12ec89d8467a312838
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ export const DeploymentBannerView: FC<DeploymentBannerViewProps> = (props) => {
justify-content: center;
background-color: ${unhealthy ? colors.red[10] : undefined};
padding: 0 12px;
height: ${bannerHeight}px;
height: calc(${bannerHeight}px - 1px);
color: #fff;

& svg {
Expand All @@ -158,6 +158,7 @@ export const DeploymentBannerView: FC<DeploymentBannerViewProps> = (props) => {
<div
css={{
position: "sticky",
lineHeight: 1,
height: bannerHeight,
bottom: 0,
zIndex: 1,
Expand Down