From a12b803af2b88d5d308cb01e9ad18781beed0bcd Mon Sep 17 00:00:00 2001 From: petr Date: Wed, 27 Jan 2021 11:29:01 +0100 Subject: [PATCH] uprava 2 --- src/App.vue | 176 +++++++++++++++++++++++++++++++++++++++++----------- 1 file changed, 139 insertions(+), 37 deletions(-) diff --git a/src/App.vue b/src/App.vue index 6250004..f8006e6 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,49 +1,151 @@ \ No newline at end of file + .wrapper { + display: grid; + grid-template-columns: 1fr 1fr; + } + + .seat { + display: inline-block; + width: 30px; + text-align: center; + border: 1px solid gray; + margin: 2px; + } + + .seat div:hover { + cursor: pointer; + background-color: lightgray; + } + + .seat .chosen { + background-color: lightgreen; + } + +