Enlarge custom emojis on hover

This commit is contained in:
silverpill 2023-01-26 14:17:24 +00:00
parent 94eaa3eed4
commit 646ea003dd
2 changed files with 11 additions and 0 deletions

View file

@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## [Unreleased]
### Added
- Enlarge custom emojis on hover.
### Changed
- Disabled posting and reposting if current user doesn't have `create_post` permission.

View file

@ -171,6 +171,13 @@ function getContent(): string {
height: 32px;
vertical-align: middle;
width: 32px;
&:hover {
height: 48px;
transition: 100ms linear;
transition-delay: 0.5s;
width: 48px;
}
}
}
</style>