mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-02 08:13:34 +03:00
35 lines
637 B
CSS
35 lines
637 B
CSS
|
/*
|
||
|
|
||
|
WHITE SPACE
|
||
|
|
||
|
Media Query Extensions:
|
||
|
-ns = not-small
|
||
|
-m = medium
|
||
|
-l = large
|
||
|
|
||
|
*/
|
||
|
|
||
|
|
||
|
.ws-normal { white-space: normal; }
|
||
|
.nowrap { white-space: nowrap; }
|
||
|
.pre { white-space: pre; }
|
||
|
|
||
|
@media (--breakpoint-not-small) {
|
||
|
.ws-normal-ns { white-space: normal; }
|
||
|
.nowrap-ns { white-space: nowrap; }
|
||
|
.pre-ns { white-space: pre; }
|
||
|
}
|
||
|
|
||
|
@media (--breakpoint-medium) {
|
||
|
.ws-normal-m { white-space: normal; }
|
||
|
.nowrap-m { white-space: nowrap; }
|
||
|
.pre-m { white-space: pre; }
|
||
|
}
|
||
|
|
||
|
@media (--breakpoint-large) {
|
||
|
.ws-normal-l { white-space: normal; }
|
||
|
.nowrap-l { white-space: nowrap; }
|
||
|
.pre-l { white-space: pre; }
|
||
|
}
|
||
|
|