Skip to content

Commit

Permalink
fixed very basic css problems with grouped buttons using fomantic css…
Browse files Browse the repository at this point in the history
… instead of semantic css
  • Loading branch information
Shaun Cullen committed Apr 22, 2020
1 parent 4221a74 commit 88eb784
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,7 @@
"electron-log": "^3.0.5",
"electron-updater": "^4.0.6",
"emotion": "^10.0.23",
"fomantic-ui-css": "^2.8.4",
"formik": "^2.0.3",
"jquery": "^3.4.1",
"moment": "^2.24.0",
Expand Down
3 changes: 2 additions & 1 deletion src/assets/css/App.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
@charset "utf-8";

@import '~semantic-ui-css/semantic.min.css';
// @import '~semantic-ui-css/semantic.min.css';
@import '~fomantic-ui-css/semantic.min.css';
@import '~ol-layerswitcher/src/ol-layerswitcher.css';

// Import a Google Font
Expand Down
3 changes: 1 addition & 2 deletions src/components/TileListItemCompact.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ export default function TileListItemCompact(props: AppProps) {
<div className="tileListItemActions">
{props.taskStatus ? <Icon name={jobProgressIcon} color={jobProgressColor} size="small" bordered/> : ''}

<Button.Group basic compact size="tiny">
<Button.Group>
<Popup hoverable basic flowing
position="bottom center"

Expand Down Expand Up @@ -186,7 +186,6 @@ export default function TileListItemCompact(props: AppProps) {
compact
icon='caret down'
size="mini"
color="grey"
onClick={event => event.stopPropagation()}/>}
mouseLeaveDelay={750}
/>
Expand Down

0 comments on commit 88eb784

Please sign in to comment.