1/* 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} 16