added template vision msg

This commit is contained in:
Kostya
2023-11-19 14:14:54 +03:00
parent e57e55f8ad
commit ab907135db
3 changed files with 37 additions and 0 deletions

View File

@@ -36,4 +36,30 @@
padding: 6px 6px 6px 7px;
border-radius: 6px;
background: #3D3F48;
}
.chat__content--users {
height: 70%;
}
.card__user {
margin-top: 24px;
margin: 24px 70px 0px 23px;
display: flex;
}
.user__icon {
display: flex;
justify-content: center;
align-items: center;
text-align: center;
}
.content {
display: flex;
justify-content: center;
align-items: center;
text-align: center;
flex-direction: column;
margin-left: 23px;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1017 B

View File

@@ -10,6 +10,17 @@
</div>
</div>
</div>
<div class="chat__content--users">
<div class="card__user">
<div class="user__icon">
<img src="@/assets/icons-test/person-icon-chat.png">
</div>
<div class="content">
<h3>User Name</h3>
<p>msg content</p>
</div>
</div>
</div>
</aside>
</template>