blob: f6f5fa08d6dbe85cc4cbf949825a17b566b2cf49 [file] [log] [blame]
Olivier Depreza3acd602023-05-22 12:10:42 +02001/*
2 * Copyright (c) 2021, Arm Limited. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7/*
8 * Set the white-space property of tables to normal.
9 * With this setting sequences of whitespace inside
10 * a table will collapse into a single whitespace,
11 * and text will wrap when necessary.
12 */
13.wy-table-responsive table td {
14white-space: normal;
15}