Skip to content

Commit

Permalink
[FIX] fix broken body element styles
Browse files Browse the repository at this point in the history
  • Loading branch information
shellyln committed Oct 26, 2019
1 parent 9d218d4 commit 14101bf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions public/index.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!DOCTYPE html>
<html lang="en">
<html lang="en" class="KanbanBoardApp-html">
<head>
<meta charset="utf-8" />
<link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico" />
Expand Down Expand Up @@ -30,7 +30,7 @@
-->
<title>Kanban Board</title>
</head>
<body>
<body class="KanbanBoardApp-body">
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<!--
Expand Down
4 changes: 2 additions & 2 deletions src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,12 @@
}


html {
html.KanbanBoardApp-html {
height: 100%;
background-color: var(--main-bg-color);
}

body {
body.KanbanBoardApp-body {
height: 100%;
margin: 0;
font-family: -apple-system, system-ui, BlinkMacSystemFont,
Expand Down

0 comments on commit 14101bf

Please sign in to comment.