Browse Source

Fixing an issue where the buttons for the components hierarchy were overflowing outside of their parent panel, removing the specification of the width and height allows computed values to be used instead (including padding etc) - check this fixes it in windows, linux and electron app.

pull/589/head
mike12345567 6 years ago
parent
commit
7d0d2d5453
  1. 2
      packages/builder/src/components/userInterface/ComponentsHierarchy.svelte
  2. 2
      packages/builder/src/components/userInterface/ComponentsHierarchyChildren.svelte

2
packages/builder/src/components/userInterface/ComponentsHierarchy.svelte

@ -109,8 +109,6 @@
.dropdown-menu {
display: none;
height: 24px;
width: 24px;
color: var(--ink);
padding: 0px 5px;
border-style: none;

2
packages/builder/src/components/userInterface/ComponentsHierarchyChildren.svelte

@ -204,8 +204,6 @@
.actions {
display: none;
height: 24px;
width: 24px;
color: var(--ink);
padding: 0px 5px;
border-style: none;

Loading…
Cancel
Save