Browse Source

Issue [iframe padding] #460 and frontend tab switch

Swapped the order of design and settings in the frontend builder - feedback from Darren

Removed margin on iframe - feedback from Kev
pull/481/head
Joe 6 years ago
parent
commit
f37c2fb308
  1. 1
      packages/builder/src/components/userInterface/AppPreview/iframeTemplate.js
  2. 2
      packages/builder/src/components/userInterface/ComponentPropertiesPanel.svelte

1
packages/builder/src/components/userInterface/AppPreview/iframeTemplate.js

@ -6,6 +6,7 @@ export default `<html>
body, html {
height: 100%!important;
font-family: Inter !important;
margin: 0px!important;
}
*, *:before, *:after {
box-sizing: border-box;

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

@ -23,8 +23,8 @@
let codeEditor
let flattenedPanel = flattenComponents(panelStructure.categories)
let categories = [
{ value: "design", name: "Design" },
{ value: "settings", name: "Settings" },
{ value: "design", name: "Design" },
{ value: "events", name: "Events" },
]
let selectedCategory = categories[0]

Loading…
Cancel
Save