Added GUI components

This commit is contained in:
2024-05-12 21:24:29 +02:00
parent 70d7371351
commit 36f38b4c94
8 changed files with 129 additions and 65 deletions

View File

@ -0,0 +1,33 @@
<template>
<div class="chat-wrapper">
<input />
</div>
</template>
<script setup lang="ts">
</script>
<style scoped lang="scss">
.chat-wrapper {
position: absolute;
bottom: 0;
left: 20px;
width: 100%;
height: 100px;
display: flex;
justify-content: flex-start;
align-items: center;
input {
width: 32rem;
height: 3rem;
border-radius: 1rem;
opacity: 0.8;
font-size: 1.2rem;
padding: 0 1rem;
color: black;
}
}
</style>

View File

@ -0,0 +1,11 @@
<template>
</template>
<script setup lang="ts">
</script>
<style scoped lang="scss">
</style>

View File

@ -0,0 +1,11 @@
<template>
</template>
<script setup lang="ts">
</script>
<style scoped lang="scss">
</style>