mirror of
https://github.com/discourse/discourse-ai.git
synced 2025-07-09 23:53:29 +00:00
40 lines
812 B
SCSS
40 lines
812 B
SCSS
|
.semantic-search__container {
|
||
|
background: var(--primary-very-low);
|
||
|
margin: 1rem 0 1rem 0;
|
||
|
|
||
|
.semantic-search__results {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
align-items: baseline;
|
||
|
|
||
|
.semantic-search {
|
||
|
&__searching-text {
|
||
|
display: inline-block;
|
||
|
margin-left: 3px;
|
||
|
}
|
||
|
&__indicator-wave {
|
||
|
flex: 0 0 auto;
|
||
|
display: inline-flex;
|
||
|
}
|
||
|
&__indicator-dot {
|
||
|
display: inline-block;
|
||
|
animation: ai-summary__indicator-wave 1.8s linear infinite;
|
||
|
&:nth-child(2) {
|
||
|
animation-delay: -1.6s;
|
||
|
}
|
||
|
&:nth-child(3) {
|
||
|
animation-delay: -1.4s;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.semantic-search__entries {
|
||
|
margin-top: 10px;
|
||
|
}
|
||
|
|
||
|
.semantic-search__searching {
|
||
|
margin-left: 5px;
|
||
|
}
|
||
|
}
|
||
|
}
|