From 9919cd3ff6654821fa527c6c60116109c9a94df7 Mon Sep 17 00:00:00 2001 From: junewgl <1965259211@qq.com> Date: Tue, 28 Nov 2023 16:08:34 +0800 Subject: [PATCH] docs: add img border --- .../started_tutorial/chat_knowledge.md | 3 +-- docs/src/css/custom.css | 12 +++++++++--- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/docs/docs/application_manual/started_tutorial/chat_knowledge.md b/docs/docs/application_manual/started_tutorial/chat_knowledge.md index 6dae5b03f..24ffc37aa 100644 --- a/docs/docs/application_manual/started_tutorial/chat_knowledge.md +++ b/docs/docs/application_manual/started_tutorial/chat_knowledge.md @@ -27,10 +27,9 @@ Select the knowledge base, click the `Create` button, and fill in the necessary
- +
- ### Upload documents Document addition currently supports multiple types, such as plain text, URL crawling, and various document types such as PDF, Word, and Markdown. Select a specific document to `upload`. diff --git a/docs/src/css/custom.css b/docs/src/css/custom.css index 646164deb..b816460cf 100755 --- a/docs/src/css/custom.css +++ b/docs/src/css/custom.css @@ -43,6 +43,12 @@ no-repeat; } -.img { - padding: 3px; - border: 1px solid #2f15d6; } \ No newline at end of file +img { + border: 2px solid #CCCCCC; border-radius: 8px; box-shadow: 3px 3px 10px rgba(0,0,0,0.1); + } + +/* logo images are processed separately */ +.navbar__logo img { + border: none; + box-shadow: none; +} \ No newline at end of file