Files
TLA/resources/js/components/GuessWord.vue
T
Belupeti 48048e516a
Build / Build-image (push) Successful in 54s
frontend stuff and changes to api
2026-08-10 12:33:44 +02:00

27 lines
507 B
Vue

<template>
<div class="gw-div">
<slot></slot>
</div>
</template>
<style scoped>
.gw-div {
border-radius: 5px;
padding: 5px;
margin: 5px;
justify-content: center;
background-color: grey;
}
.cw-cp {
background-color: rgb(0, 122, 2);
}
.cw-ip {
background-color: rgb(1, 185, 4);
}
.cf-cp {
background-color: rgb(0, 9, 166);
}
.cf-ip {
background-color: rgb(45, 54, 225);
}
</style>