Skip to content

Commit 4bc76a4

Browse files
Larry StoneFoxandxss
authored andcommitted
Fixing less error. Line was missing a semicolon making Rspec fail.
Closes #92 Fixes #94
1 parent 5d49cd1 commit 4bc76a4

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

dist/angular-toastr.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828
.toast-close-button:focus {
2929
color: #000000;
3030
text-decoration: none;
31-
cursor: pointer
32-
opacity: 0.4;
31+
cursor: pointer;
32+
opacity: 0.4;
3333
}
3434
/*Additional properties for button version
3535
iOS requires the button element instead of an anchor tag.

dist/angular-toastr.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/toastr.less

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
&:focus {
5858
color: @black;
5959
text-decoration: none;
60-
cursor: pointer
60+
cursor: pointer;
6161
opacity: 0.4;
6262
}
6363
}

0 commit comments

Comments
 (0)