fix(drawer): divider border transition for the drawer (#1213)

* add border transition on the drawer

* add changelog
This commit is contained in:
Matthew 2021-09-22 16:33:43 +02:00 committed by GitHub
parent 93fa426b20
commit 0a52c1b141
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 0 deletions

View File

@ -5,6 +5,7 @@
### Fixes
- Fix `n-global-style` applies style transition on first mount.
- Fix `n-drawer` border transition [#1211].
## 2.19.1 (2021-09-21)

View File

@ -76,6 +76,7 @@ export default c([
font-size: var(--title-font-size);
color: var(--title-text-color);
padding: var(--header-padding);
transition: border .3s var(--bezier);
border-bottom: 1px solid var(--divider-color);
border-bottom: var(--header-border-bottom);
display: flex;
@ -91,6 +92,7 @@ export default c([
display: flex;
justify-content: flex-end;
border-top: var(--footer-border-top);
transition: border .3s var(--bezier);
padding: var(--footer-padding);
`)
]),