Fix table horizontal overflow scrolling

The table for hardened_malloc arena counts caused the entire webpage to
scroll horizontally. Force only the table to scroll, while fixing the
webpage scroll.
This commit is contained in:
inference 2024-06-26 20:46:55 +01:00
parent fac206fefa
commit b4d66d9995
Signed by: inference
SSH Key Fingerprint: SHA256:K/a677+eHm7chi3X4s77BIpLTE9Vge1tsv+jUL5gI+Y

View File

@ -1,7 +1,7 @@
<!DOCTYPE html> <!DOCTYPE html>
<!-- Inferencium - Website - Documentation - hardened_malloc --> <!-- Inferencium - Website - Documentation - hardened_malloc -->
<!-- Version: 5.0.2-alpha.5 --> <!-- Version: 5.0.2-alpha.6 -->
<!-- Copyright 2023 Jake Winters --> <!-- Copyright 2023 Jake Winters -->
<!-- SPDX-License-Identifier: BSD-3-Clause --> <!-- SPDX-License-Identifier: BSD-3-Clause -->
@ -82,6 +82,7 @@
whereas lower values prefer lower memory usage. Note that having too many arenas may cause memory whereas lower values prefer lower memory usage. Note that having too many arenas may cause memory
fragmentation and decrease system performance. The number of arenas has no impact on the security fragmentation and decrease system performance. The number of arenas has no impact on the security
properties of hardened_malloc.</p> properties of hardened_malloc.</p>
<div style="overflow-x:auto;">
<table align="center"> <table align="center">
<thead> <thead>
<tr> <tr>
@ -98,6 +99,7 @@
</tr> </tr>
</tbody> </tbody>
</table> </table>
</div>
<p>For extra security, <code>CONFIG_SEAL_METADATA=true</code> can be used in order to control <p>For extra security, <code>CONFIG_SEAL_METADATA=true</code> can be used in order to control
whether whether
<a href="https://www.kernel.org/doc/html/v6.9/core-api/protection-keys.html">Memory Protection Keys</a> <a href="https://www.kernel.org/doc/html/v6.9/core-api/protection-keys.html">Memory Protection Keys</a>