fix(title): allow overriding of large title transform origin (#21770)

resolves #21761
This commit is contained in:
Liam DeBeasi
2020-07-20 13:40:27 -04:00
committed by GitHub
parent 096eef4a79
commit dbe6853884
2 changed files with 5 additions and 1 deletions

View File

@ -41,6 +41,7 @@
:host(.title-large) {
@include padding(0, 16px);
@include transform-origin(start, center);
bottom: 0;
@ -59,3 +60,7 @@
:host(.title-large.ion-cloned-element) {
--color: #{$text-color};
}
:host(.title-large) .toolbar-title {
@include transform-origin(inherit);
}