hiding content on print, small and large screen
This commit is contained in:
parent
6f84bea1c6
commit
1b593067e5
1 changed files with 15 additions and 1 deletions
|
@ -155,7 +155,21 @@ strong,
|
|||
overflow: hidden;
|
||||
height: 1px; width: 1px;
|
||||
}
|
||||
|
||||
@media print {
|
||||
.no-print {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
@media (max-width: @small-screen) {
|
||||
.no-small-screen {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
@media (min-width: @large-screen) {
|
||||
.no-large-screen {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
/* ----------------------------- */
|
||||
/* == browsers consistency */
|
||||
/* ----------------------------- */
|
||||
|
|
Loading…
Reference in a new issue