Swap back to border for selected component highlighting from box-shadow

This commit is contained in:
Andrew Kingston 2021-01-06 16:03:45 +00:00
parent ff93d30608
commit fcad9892e0
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ const addBuilderPreviewStyles = (styleString, componentId, selectable) => {
// Highlighted selected element // Highlighted selected element
if (componentId === state.selectedComponentId) { if (componentId === state.selectedComponentId) {
str += `;box-shadow: 0 0 0 ${selectedComponentWidth}px ${selectedComponentColor} inset !important;` str += `;border: ${selectedComponentWidth}px solid ${selectedComponentColor} !important;`
} }
} }