Skip to content

Commit

Permalink
fix: remove border for button if not shown
Browse files Browse the repository at this point in the history
closes #43
  • Loading branch information
sibiraj-s committed Feb 5, 2018
1 parent 4f4967a commit 4eef077
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,17 @@

.ngx-toolbar-set {
display: inline-block;
border: 1px solid #ddd;
border-radius: 5px;
background-color: white;

.ngx-editor-button {
background-color: #f5f5f5;
background-color: transparent;
border: 0;
padding: 0.4rem;
min-width: 2.5rem;
float: left;
border-right: 1px solid #ddd;
border: 1px solid #ddd;
border-right: transparent;

&:hover {
cursor: pointer;
Expand All @@ -31,7 +30,7 @@
}

&:last-child {
border-right: transparent;
border-right: 1px solid #ddd;
}

&:first-child {
Expand Down

0 comments on commit 4eef077

Please sign in to comment.