You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by wu...@apache.org on 2023/01/15 14:28:22 UTC

[skywalking-website] branch master updated: Uniform button style & change the time interval between requests (#561)

This is an automated email from the ASF dual-hosted git repository.

wusheng pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/skywalking-website.git


The following commit(s) were added to refs/heads/master by this push:
     new 81e5fe95340 Uniform button style & change the time interval between requests (#561)
81e5fe95340 is described below

commit 81e5fe953408d7bedea5e387b4de739f6be7b1e6
Author: Juntao Zhang <71...@qq.com>
AuthorDate: Sun Jan 15 22:28:18 2023 +0800

    Uniform button style & change the time interval between requests (#561)
---
 assets/scss/_buttons.scss | 15 +++++++++++++++
 scripts/team.js           |  2 +-
 2 files changed, 16 insertions(+), 1 deletion(-)

diff --git a/assets/scss/_buttons.scss b/assets/scss/_buttons.scss
new file mode 100644
index 00000000000..18415733723
--- /dev/null
+++ b/assets/scss/_buttons.scss
@@ -0,0 +1,15 @@
+// Buttons
+
+@if $enable-rounded {
+    .btn {
+        border-radius: 6px;
+
+        &-lg {
+            border-radius: 8px;
+        }
+
+        &-sm {
+            border-radius: 6px;
+        }
+    }
+}
diff --git a/scripts/team.js b/scripts/team.js
index f827f9d2ca2..9695e1572c2 100644
--- a/scripts/team.js
+++ b/scripts/team.js
@@ -9,7 +9,7 @@ const docsFile = path.join(__dirname, '../data/docs.yml')
 const teamFile = path.join(__dirname, '../data/team.yml')
 const mergedDataFile = path.join(__dirname, '../themes/docsy/static/js/mergedData.js')
 
-const sleep = (ms = 4 * 1000) => {
+const sleep = (ms = 8 * 1000) => {
   console.log('waiting...');
   return new Promise(resolve => setTimeout(() => resolve(), ms));
 }