mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-08 05:43:53 +00:00

This is the first release of the public Trusted Firmware A class threat model. This release provides the baseline for future updates to be applied as required by developments to the TF-A code base. Signed-off-by: Zelalem Aweke <zelalem.aweke@arm.com> Change-Id: I3c9aadc46196837679f0b1377bec9ed4fc42ff11
15 lines
365 B
CSS
15 lines
365 B
CSS
/*
|
|
* Copyright (c) 2021, Arm Limited. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
/*
|
|
* Set the white-space property of tables to normal.
|
|
* With this setting sequences of whitespace inside
|
|
* a table will collapse into a single whitespace,
|
|
* and text will wrap when necessary.
|
|
*/
|
|
.wy-table-responsive table td {
|
|
white-space: normal;
|
|
}
|