custom.css 365 B

123456789101112131415
  1. /*
  2. * Copyright (c) 2021, Arm Limited. All rights reserved.
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. */
  6. /*
  7. * Set the white-space property of tables to normal.
  8. * With this setting sequences of whitespace inside
  9. * a table will collapse into a single whitespace,
  10. * and text will wrap when necessary.
  11. */
  12. .wy-table-responsive table td {
  13. white-space: normal;
  14. }