Files
ionic-framework/core/src/components/title/title.scss

46 lines
636 B
SCSS

@import "../../themes/ionic.globals";
// Title
// --------------------------------------------------
:host {
/**
* @prop --color: Text color of the title
*/
--color: initial;
display: flex;
flex: 1;
align-items: center;
transform: translateZ(0);
color: var(--color);
}
:host(.ion-color) {
color: #{current-color(base)};
}
.toolbar-title {
display: block;
width: 100%;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
pointer-events: auto;
}
// Small Title
// --------------------------------------------------
:host(.title-small) .toolbar-title {
white-space: normal;
}