Skip to content

Commit

Permalink
feat: add font (#1454)
Browse files Browse the repository at this point in the history
## Description:
The current font isn't recognized (on mac os at least), adding multiple
that should mean at least one is supported by your OS/browser.

## Is this change user facing?
YES

## References (if applicable):
Closes #1386
  • Loading branch information
adschwartz authored and leoporoli committed Oct 3, 2023
1 parent 7b2dda2 commit 480e449
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion engine/frontend/src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import Home from './component/Home';
import { ChakraProvider } from '@chakra-ui/react'

const App = () => {
console.log("Enclave Manager version: 2023-09-27-01")
console.log("Enclave Manager version: 2023-10-02-01")
return (
<ChakraProvider>
<div className="h-screen w-screen bg-[#171923]">
Expand Down
3 changes: 2 additions & 1 deletion engine/frontend/src/component/log/Log.js
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,8 @@ export const Log = ({logs, fileName}) => {

const styles = {
row: {
fontFamily: "system-ui",
fontSize: "10pt",
fontFamily: "Menlo, Monaco, Inconsolata, Consolas, Courier, monospace",
boxSizing: "border-box",
borderBottom: "1px solid #222",
padding: "1em",
Expand Down
6 changes: 3 additions & 3 deletions engine/server/webapp/asset-manifest.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"files": {
"main.css": "./static/css/main.d26dfda9.css",
"main.js": "./static/js/main.62e418e6.js",
"main.js": "./static/js/main.53dc80c0.js",
"index.html": "./index.html",
"main.d26dfda9.css.map": "./static/css/main.d26dfda9.css.map",
"main.62e418e6.js.map": "./static/js/main.62e418e6.js.map"
"main.53dc80c0.js.map": "./static/js/main.53dc80c0.js.map"
},
"entrypoints": [
"static/css/main.d26dfda9.css",
"static/js/main.62e418e6.js"
"static/js/main.53dc80c0.js"
]
}
2 changes: 1 addition & 1 deletion engine/server/webapp/index.html
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<!doctype html><html lang="en"><head><meta charset="utf-8"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><title>Kurtosis Enclave Manager</title><script defer="defer" src="./static/js/main.62e418e6.js"></script><link href="./static/css/main.d26dfda9.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>
<!doctype html><html lang="en"><head><meta charset="utf-8"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><title>Kurtosis Enclave Manager</title><script defer="defer" src="./static/js/main.53dc80c0.js"></script><link href="./static/css/main.d26dfda9.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>

Large diffs are not rendered by default.

Large diffs are not rendered by default.

0 comments on commit 480e449

Please sign in to comment.