added style for title chat

This commit is contained in:
Kostya
2023-11-19 14:03:11 +03:00
parent b4f80e3f8e
commit f3478084d3
3 changed files with 43 additions and 1 deletions

View File

@@ -0,0 +1,35 @@
.chat__content {
width: 30%;
}
.chat__container--title {
display: flex;
align-items: center;
text-align: center;
user-select: none;
}
.chat__title {
width: 100%;
margin: 13px 0px 0px 16px;
border-radius: 8px;
background: #30323E;
box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.25);
}
.chat__container--title h2 {
padding: 3px 11px 6px 7px;
color: #A9A99D;
font-weight: 700;
text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
font-family: Montserrat Alternates;
font-size: 18px;
}
.chat__icon {
margin-top: 10px;
margin-left: -2px;
padding: 6px 6px 6px 7px;
border-radius: 6px;
background: #3D3F48;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 584 B

View File

@@ -1,7 +1,14 @@
<template> <template>
<aside class="chat"> <aside class="chat">
<div class="chat__content"> <div class="chat__content">
<h1>CHAT</h1> <div class="chat__container--title">
<div class="chat__title">
<h2>Чат</h2>
</div>
<div class="chat__icon">
<img src="@/assets/icons-chat/chat-icon.png">
</div>
</div>
</div> </div>
</aside> </aside>
</template> </template>