1
0
mirror of https://github.com/maximebf/php-debugbar.git synced 2025-01-17 05:18:32 +01:00

Merge pull request #216 from fernandosavio/patch-1

Hiding PHPDebugBar on @media print
This commit is contained in:
Barry vd. Heuvel 2015-06-04 08:42:30 +02:00
commit 8a3f058194

View File

@ -1,3 +1,10 @@
/* Hide debugbar when printing a page */
@media print {
div.phpdebugbar {
display: none;
}
}
div.phpdebugbar {
position: fixed;
bottom: 0;