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; + } + +