Skip to content

Commit

Permalink
display - hide mouse cursor / show only at home button
Browse files Browse the repository at this point in the history
  • Loading branch information
franknitschke committed Sep 20, 2023
1 parent 47215d3 commit d5021fd
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 17 deletions.
12 changes: 6 additions & 6 deletions client/build/asset-manifest.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"files": {
"main.css": "/static/css/main.e5d7f45b.css",
"main.js": "/static/js/main.a3a2d331.js",
"main.css": "/static/css/main.2f34a4c8.css",
"main.js": "/static/js/main.3ef0e149.js",
"index.html": "/index.html",
"main.e5d7f45b.css.map": "/static/css/main.e5d7f45b.css.map",
"main.a3a2d331.js.map": "/static/js/main.a3a2d331.js.map"
"main.2f34a4c8.css.map": "/static/css/main.2f34a4c8.css.map",
"main.3ef0e149.js.map": "/static/js/main.3ef0e149.js.map"
},
"entrypoints": [
"static/css/main.e5d7f45b.css",
"static/js/main.a3a2d331.js"
"static/css/main.2f34a4c8.css",
"static/js/main.3ef0e149.js"
]
}
2 changes: 1 addition & 1 deletion client/build/index.html
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<!doctype html><html lang="de"><head><meta charset="utf-8"/><link rel="icon" href="/favicon.ico"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="Web site created using create-react-app"/><link rel="apple-touch-icon" href="/logo192.png"/><link rel="manifest" href="/manifest.json"/><title>Wertungsanlage</title><script defer="defer" src="/static/js/main.a3a2d331.js"></script><link href="/static/css/main.e5d7f45b.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="de"><head><meta charset="utf-8"/><link rel="icon" href="/favicon.ico"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="Web site created using create-react-app"/><link rel="apple-touch-icon" href="/logo192.png"/><link rel="manifest" href="/manifest.json"/><title>Wertungsanlage</title><script defer="defer" src="/static/js/main.3ef0e149.js"></script><link href="/static/css/main.2f34a4c8.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.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions client/src/pages/Display.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { showRating, checkRatingSubmit } from '../helper/helper';

function Display({ isConnected, rating, ip } : PropTypes) {
return (
<div className='h-screen w-full bg-black text-red-600 text-8xl font-semibold justify-center grid grid-cols-3 gap-2 items-center px-4'>
<div className='h-screen w-full bg-black text-red-600 text-8xl font-semibold justify-center grid grid-cols-3 gap-2 items-center px-4 cursor-none'>
<div className='col-span-3 m-auto'>
<Timer time={rating?.timer} />
</div>
Expand Down Expand Up @@ -41,7 +41,7 @@ function Display({ isConnected, rating, ip } : PropTypes) {
</div>
)}

<div className="flex items-center absolute left-0 bottom-0 mb-2 ml-2">
<div className="flex items-center absolute left-0 bottom-0 mb-2 ml-2 cursor-pointer">
<div className="text-base text-gray-200 opacity-25 mr-4">
{ip}
</div>
Expand Down
2 changes: 1 addition & 1 deletion server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ref",
"version": "1.0.2",
"version": "1.0.3",
"description": "",
"main": "app.js",
"scripts": {
Expand Down

0 comments on commit d5021fd

Please sign in to comment.