Skip to content

Commit

Permalink
fixed media queries
Browse files Browse the repository at this point in the history
  • Loading branch information
johnpapa committed Nov 18, 2013
1 parent a2201b0 commit ea2f5db
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions toastr.css
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ button.toast-close-button {
background-color: #f89406;
}
/*Responsive Design*/
@media all and (max-width: 240px) {
@media all and (max-width: 239px) {
#toast-container > div {
padding: 8px 8px 8px 50px;
width: 11em;
Expand All @@ -165,7 +165,7 @@ button.toast-close-button {
top: -0.2em;
}
}
@media all and (min-width: 241px) and (max-width: 480px) {
@media all and (min-width: 240px) and (max-width: 479px) {
#toast-container > div {
padding: 8px 8px 8px 50px;
width: 18em;
Expand All @@ -175,7 +175,7 @@ button.toast-close-button {
top: -0.2em;
}
}
@media all and (min-width: 481px) and (max-width: 768px) {
@media all and (min-width: 480px) and (max-width: 767px) {
#toast-container > div {
padding: 15px 15px 15px 50px;
width: 25em;
Expand Down

0 comments on commit ea2f5db

Please sign in to comment.