From 10646b1fe23b89a139e9e013ddf047b5fc11b99f Mon Sep 17 00:00:00 2001 From: jbion Date: Sat, 23 Feb 2019 05:03:31 +0100 Subject: Improve GameScene by showing the hand --- frontend/src/components/game/GameScene.css | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 frontend/src/components/game/GameScene.css (limited to 'frontend/src/components/game/GameScene.css') diff --git a/frontend/src/components/game/GameScene.css b/frontend/src/components/game/GameScene.css new file mode 100644 index 00000000..525e68fa --- /dev/null +++ b/frontend/src/components/game/GameScene.css @@ -0,0 +1,13 @@ +.gameSceneRoot { + background: url('background-papyrus.jpg') center no-repeat; + background-size: cover; +} + +.fullscreen { + position: fixed; + top: 0; + left: 0; + bottom: 0; + right: 0; + overflow: auto; +} -- cgit