summaryrefslogtreecommitdiff
path: root/frontend/src/components/game/Board.css
diff options
context:
space:
mode:
authorjbion <joffrey.bion@amadeus.com>2019-02-26 22:12:37 +0100
committerjbion <joffrey.bion@amadeus.com>2019-02-26 22:12:37 +0100
commit20625511ff872404e70984f5b21e3f514793c511 (patch)
tree521803194965ae4ef633f4c12003472d573c4b84 /frontend/src/components/game/Board.css
parentAdd board and played cards (diff)
downloadseven-wonders-20625511ff872404e70984f5b21e3f514793c511.tar.gz
seven-wonders-20625511ff872404e70984f5b21e3f514793c511.tar.bz2
seven-wonders-20625511ff872404e70984f5b21e3f514793c511.zip
Add support for multiple columns
Diffstat (limited to 'frontend/src/components/game/Board.css')
-rw-r--r--frontend/src/components/game/Board.css4
1 files changed, 4 insertions, 0 deletions
diff --git a/frontend/src/components/game/Board.css b/frontend/src/components/game/Board.css
index 0c0d49c9..0600bd14 100644
--- a/frontend/src/components/game/Board.css
+++ b/frontend/src/components/game/Board.css
@@ -3,6 +3,8 @@
}
.cards {
+ display: flex;
+ height: 40vh;
width: 100vw;
}
@@ -29,6 +31,8 @@
}
.wonder-img {
+ border-radius: 0.5%/1.5%;
+ box-shadow: 0.2rem 0.2rem 0.5rem black;
max-height: 30vh;
max-width: 95vw;
}
bgstack15