Browse Source

fixing text wrap in handlebars

pull/4023/head
Martin McKeaveney 6 years ago
parent
commit
122caf227c
  1. 6
      packages/builder/src/components/automation/SetupPanel/GenericBindingPopover.svelte
  2. 5
      packages/builder/src/components/design/PropertiesPanel/BindingPanel.svelte

6
packages/builder/src/components/automation/SetupPanel/GenericBindingPopover.svelte

@ -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);

5
packages/builder/src/components/design/PropertiesPanel/BindingPanel.svelte

@ -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;

Loading…
Cancel
Save