mirror of
https://github.com/xodivorce/infra-xodivorce-in.git
synced 2026-02-05 02:12:23 +05:30
19 lines
431 B
PHP
Executable File
19 lines
431 B
PHP
Executable File
<!-- /**
|
|
* Debug Kit (Borders)
|
|
* This section conditionally includes styles for debugging purposes.
|
|
*/
|
|
/*
|
|
* If the DEBUG_MODE environment variable is set to 'true', it applies a green outline to all elements.
|
|
-->
|
|
|
|
<?php
|
|
$debug_mode = ($_ENV['DEBUG_MODE'] === 'true');
|
|
|
|
if ($debug_mode):
|
|
?>
|
|
<style>
|
|
* {
|
|
outline: 1px solid rgba(0, 255, 0, 0.05);
|
|
}
|
|
</style>
|
|
<?php endif; ?>
|