mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-25 09:03:12 +03:00
18 lines
506 B
CSS
18 lines
506 B
CSS
.cover { background-size: cover!important; }
|
|
.contain { background-size: contain!important; }
|
|
|
|
@media (--breakpoint-not-small) {
|
|
.cover-ns { background-size: cover!important; }
|
|
.contain-ns { background-size: contain!important; }
|
|
}
|
|
|
|
@media (--breakpoint-medium) {
|
|
.cover-m { background-size: cover!important; }
|
|
.contain-m { background-size: contain!important; }
|
|
}
|
|
|
|
@media (--breakpoint-large) {
|
|
.cover-l { background-size: cover!important; }
|
|
.contain-l { background-size: contain!important; }
|
|
}
|