Enlarge custom emojis on hover
This commit is contained in:
parent
94eaa3eed4
commit
646ea003dd
2 changed files with 11 additions and 0 deletions
|
@ -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.
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue