Preformatted text

Some elements like the code editor or the log output for Rpmlint show preformatted text. Those elements contain a pre HTML tag, and Bootstrap sets a monospace font stack for them. However, we decided to fix their size to 0.95rem to prevent they look bigger than the rest on the texts.


Example

Log output
This is    the log output
  with a          preformatted
        text.

Code

1
2
3
4
5
6
7
8
9
10
%h5 Log output

:css
  pre { font-size: .95rem }

%pre
  :preserve
    This is    the log output
      with a          preformatted
            text.