fix(bubble): incorrect duration

This commit is contained in:
Takuya Matsuyama 2022-07-06 09:24:22 +09:00
parent 2da621a0bd
commit 8a183604af
2 changed files with 2 additions and 3 deletions

View file

@ -1,5 +1,5 @@
.bubble { .bubble {
max-width: 600px; width: 100%;
} }
.bubble-content { .bubble-content {
@ -9,7 +9,6 @@
padding: 12px 20px; padding: 12px 20px;
margin-top: 5px; margin-top: 5px;
margin-bottom: 5px; margin-bottom: 5px;
hyphens: auto;
} }
.bubble-content { .bubble-content {

View file

@ -7,7 +7,7 @@ const transition = {
stiffness: 500, stiffness: 500,
damping: 50, damping: 50,
default: { default: {
duration: 1 duration: 0.4
} }
} }