Skip to content

Commit

Permalink
fix background color
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelolo24 committed Jun 4, 2021
1 parent a68fd45 commit 360e8aa
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ const StyledKibanaPageTemplate = styled(KibanaPageTemplate)<{
}>`
.${BOTTOM_BAR_CLASSNAME} {
animation: 'none !important'; // disable the default bottom bar slide animation
background: #ffffff; // Override bottom bar black background
background: ${({ theme }) =>
theme.eui.euiColorEmptyShade}; // Override bottom bar black background
color: inherit; // Necessary to override the bottom bar 'white text'
transform: ${(
{ $isShowingTimelineOverlay } // Since the bottom bar wraps the whole overlay now, need to override any transforms when it is open
Expand Down

0 comments on commit 360e8aa

Please sign in to comment.