This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| body { | |
| max-width: 80ch; | |
| margin: 0 auto; | |
| } | |
| /* keep wide elements inside the column but scrollable */ | |
| pre, | |
| table { | |
| overflow-x: auto; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @theme { | |
| /* #region Colors */ | |
| /* Disable Tailwind's built-in color variables */ | |
| --color-*: initial; | |
| /* Redefine common utility colors for convenience */ | |
| --color-black: #000; | |
| --color-white: #fff; | |
| /* Define custom semantic color variables using OpenBridge variables */ | |
| --color-base-100: var(--container-backdrop-color); | |
| --color-base-200: var(--container-section-color); |