1
mirror of https://github.com/pure-css/pure synced 2025-03-05 00:33:03 +01:00

Use *= ('one of') rather than (^=) starts with for collapsed units.

This commit is contained in:
Matt Sweeney 2013-05-30 10:39:14 -07:00
parent 5b96d92885
commit fae5f7f169

View File

@ -29,12 +29,14 @@
}
}
@media (max-width:480px) {
.pure-g-r > [class ^= "pure-u"] {
.pure-g-r > .pure-u,
.pure-g-r > [class *= "pure-u-"] {
width: 100%;
}
}
@media (max-width:767px) {
.pure-g-r > [class ^= "pure-u"] {
.pure-g-r > .pure-u,
.pure-g-r > [class *= "pure-u-"] {
width: 100%;
}
.pure-hidden-phone {