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

Commit

Permalink
fix(Button): patch incomplete connect friendly button borders
Browse files Browse the repository at this point in the history
  • Loading branch information
cdaringe committed Jul 28, 2017
1 parent e1f27b5 commit 5b36abc
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
5 changes: 4 additions & 1 deletion semantic/src/themes/tripwire/elements/button.overrides
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@
}

.ui.button.primary {
border: none;
border: 2px solid @primaryColor;
}
.ui.button.primary:hover {
border-color: @primaryColorHover;
}

.ui.button:active,
Expand Down
9 changes: 7 additions & 2 deletions src/components/suir/button/Button.examples.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,15 @@
## Positive Button

const Button = require('semantic-ui-react').Button;
<Button positive className=''>
<i className='icon_check' style={{marginRight: '10px'}} />
<div>
<Button positive className=''>
Positive
</Button>
<Button positive className=''>
<i className='icon_check' style={{marginRight: '10px'}} />
Positive with Icon
</Button>
</div>

## Negative Button

Expand Down

0 comments on commit 5b36abc

Please sign in to comment.