Skip to content

Commit

Permalink
[code] refactor: Move style from root to css file
Browse files Browse the repository at this point in the history
  • Loading branch information
TDiazT committed Mar 7, 2023
1 parent 399be5d commit 43b9470
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion editor/code/src/goals.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export class InfoPanel {
<title>Coq's info panel</title>
</head>
<body>
<div id="root" style="height:100vh;">
<div id="root">
</div>
</body>
</html>`;
Expand Down
4 changes: 4 additions & 0 deletions editor/code/views/info/media/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,7 @@ body {
font-family: var(--vscode-editor-font-family);
/* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
}

#root {
height: 100vh;
}

0 comments on commit 43b9470

Please sign in to comment.