This is an automated email from the ASF dual-hosted git repository. mintsweet pushed a commit to branch fix-bugs in repository https://gitbox.apache.org/repos/asf/incubator-devlake.git
commit 75e1a3869b63884dbef47b0853fa6c00a1248201 Author: mintsweet <[email protected]> AuthorDate: Wed Dec 27 17:00:48 2023 +1300 Revert "refactor(config-ui): remove unuse style for global" This reverts commit b5036d5bc20c881eb5ac52454fa703f4df0ddc85. --- config-ui/src/index.css | 47 ++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 46 insertions(+), 1 deletion(-) diff --git a/config-ui/src/index.css b/config-ui/src/index.css index 5096f8ab0..046bb278e 100644 --- a/config-ui/src/index.css +++ b/config-ui/src/index.css @@ -17,6 +17,51 @@ */ body { - margin: 0; color: #292b3f; } + +h1, +h2, +h3, +h4, +h5, +h6 { + margin: 0; + font-weight: 600; +} + +h1 { + font-size: 24px; +} + +h2 { + font-size: 20px; +} + +h3 { + font-size: 18px; +} + +h4 { + font-size: 16px; +} + +h5 { + font-size: 14px; +} + +h6 { + font-size: 12px; +} + +ul { + margin: 0; + padding: 0; + list-style: none; +} + +p { + margin: 8px 0; + font-size: 12px; + color: #94959f; +}
