0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-04-01 02:41:39 -05:00

Fixed browser preview site title word wrap bug

This commit is contained in:
Peter Zimon 2022-07-27 10:42:36 +02:00
parent 47fa59ea72
commit 6ae1cce9c8

View file

@ -91,3 +91,11 @@
width: 16px;
height: 16px;
}
.gh-browserpreview-browser .site-title {
display: inline-block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
max-width: 200px;
}