Skip to content

Commit

Permalink
fix(handler): z-fight issues with header, sidebar, and toasts
Browse files Browse the repository at this point in the history
  • Loading branch information
sirtawast committed Aug 29, 2024
1 parent 0b6c038 commit cc7ff47
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion frontend/benefit/handler/src/components/header/Header.sc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { respondAbovePx } from 'shared/styles/mediaQueries';
import styled from 'styled-components';

export const $BaseHeader = styled(BaseHeader)`
z-index: 99999;
z-index: 100;
background: #1a1a1a;
`;

Expand Down Expand Up @@ -157,6 +157,9 @@ export const $ApplicationWithMessages = styled(Link)`
div {
margin-right: 1rem;
hyphens: auto;
max-width: 130px;
&:first-child {
width: 90px;
min-width: 90px;
Expand All @@ -170,6 +173,7 @@ export const $ApplicationWithMessages = styled(Link)`
margin: 0 0 0 auto;
width: 20px;
height: 24px;
max-width: 20px;
}
}
Expand Down

0 comments on commit cc7ff47

Please sign in to comment.