Implement conversation UI

This commit is contained in:
2023-06-30 11:03:12 +07:00
parent a43556e714
commit 3eaaa30168
3 changed files with 55 additions and 0 deletions
+29
View File
@@ -171,3 +171,32 @@
display: flex;
gap: 68px;
}
/* Conversation Section */
.conversation__container {
width: var(--width);
margin: auto;
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 73.57px;
}
.conversation__content {
width: 470px;
display: flex;
flex-direction: column;
gap: 16px;
}
.conversation__heading {
font-size: var(--fs-lg);
font-family: var(--ff-secondary-bold);
line-height: 125%;
}
.conversation__description {
font-size: var(--fs-sm);
font-family: var(--ff-primary-regular);
line-height: 125%;
}