新着レスポップアップ編集サンプル(文字色、表示位置、表示時間)
```
/*新着レスポップアップ*/
.tabbase {
&.update-message {
color: rgb(254, 185, 36); /*文字色*/
/*設定の指定に対して調整 上なら&.top、中央なら&.middle、下なら&.bottom {
top: xx;
left: xx;
}*/
&.show {
animation: update-message-lifecycle 3s; /*表示時間 デフォルト6s*/
}
}
}
```