forked from noxious/client
41 lines
673 B
Vue
41 lines
673 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">
|
|
.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(255, 255, 255, 0.85);
|
|
border: 2px solid #fff;
|
|
color: black;
|
|
|
|
}
|
|
|
|
img {
|
|
position: absolute;
|
|
left: 32rem;
|
|
width: 1.875rem;
|
|
height: 1.875rem;
|
|
}
|
|
}
|
|
|
|
</style> |