>>35
CSS
こんな感じでどうだろ?
```
.update-message {
bottom: unset;
top: 3px;
transform: translateY(-200%);
&.show {
transform: translateY(5%);
}
}
```