Created
March 30, 2026 16:56
-
-
Save k0pernikus/a25ac00c954a6cdc48aa45f95732492f to your computer and use it in GitHub Desktop.
gitlab user style to remove padding / margin between lines for job reports
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
| @-moz-document domain("gitlab.com") { | |
| :root { | |
| --default-mono-font: "0xProto Nerd Font", "0xProto", monospace !important; | |
| } | |
| .job-log, .build-trace, pre.code, .gl-font-monospace { | |
| font-family: var(--default-mono-font) !important; | |
| line-height: 1 !important; /* Removes the vertical gaps between lines */ | |
| } | |
| .job-log span, .build-trace span, .log-line { | |
| line-height: 1 !important; | |
| padding-top: 0 !important; | |
| padding-bottom: 0 !important; | |
| margin-top: 0 !important; | |
| margin-bottom: 0 !important; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment