mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-01-30 22:35:18 +01:00
feat: add animation
This commit is contained in:
parent
462660d554
commit
059006382d
2 changed files with 68 additions and 9 deletions
|
|
@ -28,6 +28,31 @@
|
|||
transition: all 1s ease-in-out;
|
||||
} */
|
||||
|
||||
.openAIOptions-simple-container {
|
||||
pointer-events: none;
|
||||
opacity: 0;
|
||||
transition: all 0.5s ease-in-out;
|
||||
}
|
||||
|
||||
.openAIOptions-simple-container.show {
|
||||
pointer-events: fill;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.openAIOptions-advanced-container {
|
||||
pointer-events: none;
|
||||
opacity: 0;
|
||||
transition: all 0.2s ease-in-out;
|
||||
transform: scaleY(0);
|
||||
transform-origin: bottom center;
|
||||
}
|
||||
|
||||
.openAIOptions-advanced-container.show {
|
||||
pointer-events: fill;
|
||||
opacity: 1;
|
||||
transform: scaleY(1)
|
||||
}
|
||||
|
||||
.bing-styles {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue