From a45209bd528944d01d46b274b238b9c49f756ef8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Magalh=C3=A3es?= <joamag@gmail.com> Date: Tue, 1 Nov 2022 22:05:34 +0000 Subject: [PATCH] feat: new title value --- examples/web/react/app.css | 4 ++++ examples/web/react/app.tsx | 1 + 2 files changed, 5 insertions(+) diff --git a/examples/web/react/app.css b/examples/web/react/app.css index f666378e..4c178670 100644 --- a/examples/web/react/app.css +++ b/examples/web/react/app.css @@ -4,6 +4,10 @@ margin: 0px 0px 0px 0px; } +.app h3 { + margin: 10px 0px 10px 0px; +} + .app .display-container { margin-top: 78px; } diff --git a/examples/web/react/app.tsx b/examples/web/react/app.tsx index 8f091443..dc633d67 100644 --- a/examples/web/react/app.tsx +++ b/examples/web/react/app.tsx @@ -510,6 +510,7 @@ export const App: FC<AppProps> = ({ emulator, backgrounds = ["264653"] }) => { )} {debugVisible && ( <Section> + <h3>VRAM Tiles</h3> <Tiles getTile={(index) => emulator.getTile(index)} tileCount={384} -- GitLab