fixing text wrap in handlebars

This commit is contained in:
Martin McKeaveney 2021-02-03 08:12:58 +00:00
parent 3edeb2d539
commit d98be2f1aa
2 changed files with 11 additions and 0 deletions

View File

@ -167,7 +167,13 @@
.binding__description { .binding__description {
color: var(--grey-8); color: var(--grey-8);
margin-top: 2px; margin-top: 2px;
white-space: normal;
} }
pre {
white-space: normal;
}
.binding__type { .binding__type {
font-family: monospace; font-family: monospace;
background-color: var(--grey-2); background-color: var(--grey-2);

View File

@ -170,6 +170,11 @@
border-width: 1px 0 1px 0; border-width: 1px 0 1px 0;
} }
pre,
.description {
white-space: normal;
}
li:hover { li:hover {
color: var(--ink); color: var(--ink);
font-weight: 500; font-weight: 500;