fixed text center header pdf viewer

This commit is contained in:
Timo Bejan 2020-11-17 17:31:38 +02:00
parent 44d91002a4
commit b707583863

View File

@ -1,9 +1,14 @@
.custom-ribbons-container {
flex: none;
}
div[data-element='header-text'] {
flex: 1;
overflow: hidden;
margin: 0 258px 0 6px;
}
div[data-element='header-text'] > div {
text-align: right;
font-size: 11px;
color: #283241;
line-height: 14px;
@ -11,4 +16,11 @@ div[data-element='header-text'] > div {
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
text-align: center;
}
@media (max-width: 900px) {
div[data-element='header-text'] {
margin: 0 6px 0 6px;
}
}