1
0
forked from noxious/client

43 lines
699 B
Vue

<template>
<div class="chat-wrapper">
<input placeholder="Type something..." />
<img src="/assets/icons/submit-icon.svg">
</div>
</template>
<script setup lang="ts">
</script>
<style scoped lang="scss">
@import '@/assets/scss/main';
.chat-wrapper {
width: 100%;
height: 100px;
display: flex;
justify-content: flex-start;
align-items: center;
input {
width: 32rem;
height: 3rem;
border-radius: 3rem;
opacity: 0.8;
font-size: 1.2rem;
padding: 0 1.5rem;
background-color: rgba($white, 0.85);
border: 2px solid $white;
color: black;
}
img {
position: absolute;
left: 32rem;
width: 1.875rem;
height: 1.875rem;
}
}
</style>