1
0
mirror of https://github.com/Yidadaa/ChatGPT-Next-Web.git synced 2025-09-09 08:38:30 +08:00
Files
.github
.husky
app
api
client
components
config
icons
locales
masks
store
styles
animation.scss
globals.scss
highlight.scss
markdown.scss
window.scss
utils
command.ts
constant.ts
global.d.ts
layout.tsx
page.tsx
polyfill.ts
typing.ts
utils.ts
docs
public
scripts
src-tauri
.env.template
.eslintignore
.eslintrc.json
.gitignore
.gitpod.yml
.lintstagedrc.json
.prettierrc.js
CODE_OF_CONDUCT.md
Dockerfile
LICENSE
README.md
README_CN.md
README_ES.md
docker-compose.yml
next.config.mjs
package.json
tsconfig.json
vercel.json
yarn.lock
ChatGPT-Next-Web/app/styles/animation.scss
2023-04-02 18:28:07 +00:00

24 lines
303 B
SCSS

@keyframes slide-in {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0px);
}
}
@keyframes slide-in-from-top {
from {
opacity: 0;
transform: translateY(-20px);
}
to {
opacity: 1;
transform: translateY(0px);
}
}