From bcc4ce5ef792482ab6a9d132f4c147e57dc7e592 Mon Sep 17 00:00:00 2001 From: aidosmf Date: Mon, 19 Aug 2024 14:39:59 +0500 Subject: [PATCH 1/4] fix(lottie-theme): remove container fit-content --- tools/theme/css/lottie-theme.css | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tools/theme/css/lottie-theme.css b/tools/theme/css/lottie-theme.css index 15d545b..d861e5f 100644 --- a/tools/theme/css/lottie-theme.css +++ b/tools/theme/css/lottie-theme.css @@ -111,7 +111,3 @@ a:hover { text-decoration: none; background-color: #006a5f; } - -.container { - width: fit-content; -} From dd3c53ed676e203b66fa6076956937ac76063115 Mon Sep 17 00:00:00 2001 From: aidosmf Date: Mon, 9 Sep 2024 17:02:40 +0500 Subject: [PATCH 2/4] chore(gitignore): add path & venv --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 7ed606e..ef0c99f 100644 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,8 @@ docs/lottie.schema.json site/ __pycache__ node_modules +path +venv # Operating system .DS_Store \ No newline at end of file From 2aae86d2b9587f387e82c91098c133718df46aa2 Mon Sep 17 00:00:00 2001 From: aidosmf Date: Mon, 9 Sep 2024 18:22:38 +0500 Subject: [PATCH 3/4] fix: code html element --- tools/theme/css/lottie-theme.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tools/theme/css/lottie-theme.css b/tools/theme/css/lottie-theme.css index d861e5f..c0a4705 100644 --- a/tools/theme/css/lottie-theme.css +++ b/tools/theme/css/lottie-theme.css @@ -111,3 +111,7 @@ a:hover { text-decoration: none; background-color: #006a5f; } + +code { + white-space: normal; +} From 783e164f8176a06840a24d632d315d3058f46d2c Mon Sep 17 00:00:00 2001 From: aidosmf Date: Mon, 9 Sep 2024 18:43:35 +0500 Subject: [PATCH 4/4] fix: table css on small screens --- tools/theme/css/lottie-theme.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tools/theme/css/lottie-theme.css b/tools/theme/css/lottie-theme.css index c0a4705..28e07b5 100644 --- a/tools/theme/css/lottie-theme.css +++ b/tools/theme/css/lottie-theme.css @@ -115,3 +115,9 @@ a:hover { code { white-space: normal; } + +table { + display: block; + overflow-x: auto; + white-space: nowrap; +}