Skip to content

Commit

Permalink
Merge pull request #92 from bigbite/refactor/move-border-control-to-b…
Browse files Browse the repository at this point in the history
…ottom

[85] Moves border control to the bottom of the list
  • Loading branch information
g-elwell authored Aug 14, 2024
2 parents f24f39c + 998bb0c commit 55bf1a9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/editor/components/Styles.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,6 @@ const Styles = ( { selector } ) => {

return (
<div className="themer--styles">
<div className="themer--styles__item">
<Border selector={ `${ selector }.border` } />
</div>
<div className="themer--styles__item">
<Color selector={ `${ selector }.color` } />
</div>
Expand All @@ -49,6 +46,9 @@ const Styles = ( { selector } ) => {
<div className="themer--styles__item">
<Shadow selector={ `${ selector }.shadow` } />
</div>
<div className="themer--styles__item">
<Border selector={ `${ selector }.border` } />
</div>
</div>
);
};
Expand Down

0 comments on commit 55bf1a9

Please sign in to comment.