Fix unsupported browser images

Fixes the path of the unsupported browser images
This commit is contained in:
yanas 2016-08-11 10:14:06 -05:00 committed by GitHub
parent 23a805b79c
commit c37876a8b7
1 changed files with 6 additions and 6 deletions

View File

@ -98,39 +98,39 @@ a {
{ {
width: 78px; width: 78px;
height: 78px; height: 78px;
background-image: url('/images/chrome.png'); background-image: url('../images/chrome.png');
} }
#chromium_logo #chromium_logo
{ {
width: 77px; width: 77px;
height: 78px; height: 78px;
background-image: url('/images/chromium.png'); background-image: url('../images/chromium.png');
} }
#firefox_logo #firefox_logo
{ {
width: 86px; width: 86px;
height: 80px; height: 80px;
background-image: url('/images/firefox.png'); background-image: url('../images/firefox.png');
} }
#opera_logo #opera_logo
{ {
width: 73px; width: 73px;
height: 78px; height: 78px;
background-image: url('/images/opera.png'); background-image: url('../images/opera.png');
} }
#safari_logo #safari_logo
{ {
width: 78px; width: 78px;
height: 79px; height: 79px;
background-image: url('/images/safari.png'); background-image: url('../images/safari.png');
} }
#ie_logo #ie_logo
{ {
width: 80px; width: 80px;
height: 78px; height: 78px;
background-image: url('/images/ie.png'); background-image: url('../images/ie.png');
} }