diff --git a/web/public/assets/ghost_writer_logo.png b/web/public/assets/ghost_writer_logo.png new file mode 100644 index 0000000..14c9e4e Binary files /dev/null and b/web/public/assets/ghost_writer_logo.png differ diff --git a/web/src/components/GameBoard.vue b/web/src/components/GameBoard.vue index 89e633a..cf9eb90 100644 --- a/web/src/components/GameBoard.vue +++ b/web/src/components/GameBoard.vue @@ -99,6 +99,18 @@ > {{ visible ? `Hide` : `Show` }} Past Questions + + + @@ -206,6 +218,16 @@ export default { background: var(--board-background-moon), var(--board-background); } +#game-logo-link { + position: absolute; + z-index: 1; + top: 7px; + height: 10% +} +#game-logo { + height: 100%; +} + h2 { margin: 12px 0; } diff --git a/web/src/components/Hand.vue b/web/src/components/Hand.vue index f5abf56..a682d50 100644 --- a/web/src/components/Hand.vue +++ b/web/src/components/Hand.vue @@ -184,7 +184,8 @@ export default { @import "../css/style.css"; #PlayerHand { - background-color: var(--hand-background); + background: var(--hand-background); + color: var(--hand-text); margin: 0 auto; padding: 0px; width: 95%; diff --git a/web/src/css/theme.css b/web/src/css/theme.css index 35dd22b..f0f416a 100644 --- a/web/src/css/theme.css +++ b/web/src/css/theme.css @@ -39,6 +39,7 @@ /* Hand colours */ --hand-background: rgba(255, 255, 255, 0.2); + --hand-text: var(--dark-font-colour); /* The colours for the cards in the hands of the players diff --git a/web/src/views/CreateJoin.vue b/web/src/views/CreateJoin.vue index 2861f53..0226732 100644 --- a/web/src/views/CreateJoin.vue +++ b/web/src/views/CreateJoin.vue @@ -1,6 +1,14 @@