style on csc home

This commit is contained in:
Tykayn 2025-09-23 17:25:52 +02:00 committed by tykayn
parent 9f476d3008
commit b292265483
7 changed files with 18 additions and 12 deletions

View file

@ -1,3 +1,5 @@
@use '../src/styles/variables';
:host { :host {
i { i {
margin-right: 16px; margin-right: 16px;

View file

@ -1,8 +1,8 @@
<div class="bot-talks-container"> <div class="bot-talks-container">
<!-- bot talks land--> <!-- bot talks land-->
<!-- avatar--> <!-- avatar-->
<div class="bubble"> <div class="bot-talks-bubble">
<div class="message"> <div class="bot-talks-message">
{{ message }} {{ message }}
</div> </div>
@if (documents?.length) { @if (documents?.length) {

View file

@ -1,3 +1,5 @@
@use '../../src/styles/variables';
:host { :host {
display: flex; display: flex;
flex-direction: row; flex-direction: row;
@ -11,10 +13,6 @@
flex-direction: row; flex-direction: row;
align-items: center; align-items: center;
.message {
margin-bottom: 16px;
}
.dica-ref-container { .dica-ref-container {
display: flex; display: flex;
@ -46,7 +44,7 @@
margin-top: 16px; margin-top: 16px;
} }
.bubble { .bot-talks-bubble {
padding: 16px; padding: 16px;
border-radius: 8px; border-radius: 8px;
display: block; display: block;

View file

@ -66,12 +66,13 @@
width: 1332px; width: 1332px;
height: 208px; height: 208px;
padding: 12px;
overflow-y: auto; overflow-y: auto;
.chips-column { .chips-column {
padding-right: 10px; padding: 12px 12px;
width: 210px; width: 220px;
border: solid 1px #ccc;
} }
@ -109,4 +110,8 @@
} }
} }
.post-button {
margin-left: 5px;
}
} }

View file

@ -27,7 +27,8 @@
<i class="ri-arrow-down-s-line"></i> <i class="ri-arrow-down-s-line"></i>
</div> </div>
@if (displayDropdown && availableChoices?.length) { @if (displayDropdown
&& availableChoices?.length) {
<div class="dropdown"> <div class="dropdown">

View file

@ -71,7 +71,7 @@
padding: 10px 40px; padding: 10px 40px;
width: 210px; width: 100%;
height: 42px; height: 42px;
overflow: hidden; overflow: hidden;

View file