Browse Source

Improve frontend settings and design panel scrolling and panel styling

pull/4023/head
Andrew Kingston 6 years ago
parent
commit
0961812b56
  1. 3
      packages/builder/src/components/userInterface/ComponentPropertiesPanel.svelte
  2. 7
      packages/builder/src/components/userInterface/DesignView.svelte

3
packages/builder/src/components/userInterface/ComponentPropertiesPanel.svelte

@ -127,6 +127,9 @@
flex: 1 1 auto;
min-height: 0;
overflow-y: auto;
margin-left: -20px;
margin-right: -20px;
padding: 0 20px;
}
.instance-name {

7
packages/builder/src/components/userInterface/DesignView.svelte

@ -49,7 +49,7 @@
{/each}
{:else}
<div class="no-design">
<span>This component does not have any design properties</span>
This component does not have any design properties.
</div>
{/if}
</div>
@ -78,9 +78,12 @@
flex: 1;
overflow-y: auto;
min-height: 0;
margin: 0 -20px;
padding: 0 20px;
}
.no-design {
text-align: center;
font-size: var(--font-size-s);
color: var(--grey-6);
}
</style>

Loading…
Cancel
Save