Skip to content
This repository has been archived by the owner on Aug 29, 2023. It is now read-only.

Commit

Permalink
Fix vertical position of checkboxes in places list
Browse files Browse the repository at this point in the history
Fixes the "space!" aspect of sub-issue
#12 (comment)
of Issue #12.
  • Loading branch information
pont-us committed Aug 14, 2020
1 parent 98d7e74 commit c2813a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/renderer/containers/PlacemarksPanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ interface IPlacemarkItemProps {
class PlacemarkItem extends React.PureComponent<IPlacemarkItemProps, {}> {

static readonly DIV_STYLE: CSSProperties = {display: 'flex', alignItems: 'center'};
static readonly CHECK_STYLE: CSSProperties = {flexGrow: 0};
static readonly CHECK_STYLE: CSSProperties = {flexGrow: 0, margin: 0};
static readonly LABEL_STYLE: CSSProperties = {flexGrow: 1};
static readonly ICON_STYLE: CSSProperties = {marginLeft: '0.5em'};
static readonly NAME_STYLE: CSSProperties = {marginLeft: '0.5em'};
Expand Down

0 comments on commit c2813a3

Please sign in to comment.