Skip to content

Commit

Permalink
Changing background color to align with EUI color (elastic#54060)
Browse files Browse the repository at this point in the history
* Changing background color to align with EUI color

* Removing background-color from theme
  • Loading branch information
Maja Grubic committed Jan 7, 2020
1 parent a6ea611 commit 7dbc937
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/core/server/rendering/views/styles.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,6 @@ interface Props {
}

export const Styles: FunctionComponent<Props> = ({ darkMode }) => {
const themeBackground = darkMode ? '#25262e' : '#f5f7fa';

return (
<style
dangerouslySetInnerHTML={{
Expand All @@ -42,11 +40,9 @@ export const Styles: FunctionComponent<Props> = ({ darkMode }) => {
width: 100%;
height: 100%;
margin: 0;
background-color: ${themeBackground};
}
.kibanaWelcomeView {
background-color: ${themeBackground};
height: 100%;
display: -webkit-box;
display: -webkit-flex;
Expand Down

0 comments on commit 7dbc937

Please sign in to comment.