Skip to content

Instantly share code, notes, and snippets.

@k0pernikus
Created March 30, 2026 16:56
Show Gist options
  • Select an option

  • Save k0pernikus/a25ac00c954a6cdc48aa45f95732492f to your computer and use it in GitHub Desktop.

Select an option

Save k0pernikus/a25ac00c954a6cdc48aa45f95732492f to your computer and use it in GitHub Desktop.
gitlab user style to remove padding / margin between lines for job reports
@-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