legends810/testingnew
0
1.BaseChat {2 &[data-chat-visible='false'] {3 --workbench-inner-width: 100%;4 --workbench-left: 0;5 6 .Chat {7 --at-apply: bolt-ease-cubic-bezier;8 transition-property: transform, opacity;9 transition-duration: 0.3s;10 will-change: transform, opacity;11 transform: translateX(-50%);12 opacity: 0;13 }14 }15}16 17.Chat {18 opacity: 1;19}20 21.PromptEffectContainer {22 --prompt-container-offset: 50px;23 --prompt-line-stroke-width: 1px;24 position: absolute;25 pointer-events: none;26 inset: calc(var(--prompt-container-offset) / -2);27 width: calc(100% + var(--prompt-container-offset));28 height: calc(100% + var(--prompt-container-offset));29}30 31.PromptEffectLine {32 width: calc(100% - var(--prompt-container-offset) + var(--prompt-line-stroke-width));33 height: calc(100% - var(--prompt-container-offset) + var(--prompt-line-stroke-width));34 x: calc(var(--prompt-container-offset) / 2 - var(--prompt-line-stroke-width) / 2);35 y: calc(var(--prompt-container-offset) / 2 - var(--prompt-line-stroke-width) / 2);36 rx: calc(8px - var(--prompt-line-stroke-width));37 fill: transparent;38 stroke-width: var(--prompt-line-stroke-width);39 stroke: url(#line-gradient);40 stroke-dasharray: 35px 65px;41 stroke-dashoffset: 10;42}43 44.PromptShine {45 fill: url(#shine-gradient);46 mix-blend-mode: overlay;47}48 