You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@media screen and (min-width: 992px) {
.header-navigation li {
display: inline-block;
padding-top: 3px;
padding-right: 3px;
padding-left: 3px;
text-align: center
}
.header-navigation li a {
text-transform: none
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
/* Safari and Chrome */
.header-navigation li a {
letter-spacing: 1px
}
}
/* Only Chrome */
@media all and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: .001dpcm) {
.header-navigation li a {
letter-spacing: 2px
}
}
}
@media screen and (min-width: 1024px) {
...
which became (beautified)
@media screen and (min-width: 992px) {
.header-navigation li {
display: inline-block;
padding-top: 3px;
padding-right: 3px;
padding-left: 3px;
text-align: center
}
.header-navigation li a {
text-transform: none
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
.header-navigation li a {
letter-spacing: 1px
}
}
@media all and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: .001dpcm) {
.header-navigation li a {
letter-spacing: 2px
}
}
@media screen and (min-width: 1024px) {
...
Note that final closing curly bracket on "min-width: 992px" section is missing
The text was updated successfully, but these errors were encountered:
Source css file contained
which became (beautified)
Note that final closing curly bracket on "min-width: 992px" section is missing
The text was updated successfully, but these errors were encountered: