+
Barclay's Center
-
+
@@ -168,5 +210,185 @@ layout: layout-example.njk
Adipisicing beatae lorem nisi aliquid similique Voluptas doloremque pariatur tempore omnis maiores explicabo. Provident iste vel explicabo corporis quaerat! Necessitatibus minus quas iusto ducimus consequatur illo Cum eos adipisci ut!
+
+
+ Stats
+
+
+
+
+ |
+ Serve
+ |
+
+
+
+
+
+ | Attempts |
+ 2936 |
+
+
+ | Serve % |
+ 93.6% |
+
+
+ | Aces |
+ 268 |
+
+
+ | Errors |
+ 189 |
+
+
+
+
+
+
+ |
+ Serve Receive
+ |
+
+
+
+
+
+ | Attempts |
+ 2428 |
+
+
+ | Pass Rating |
+ 1.72 |
+
+
+ | Pass Error % |
+ 13.3% |
+
+
+ | 3-pass % |
+ 28.5% |
+
+
+
+
+
+
+
+ |
+ Attack
+ |
+
+
+
+
+
+ | Attempts |
+ 3624 |
+
+
+ | Kills |
+ 1431 |
+
+
+ | Errors |
+ 268 |
+
+
+ | Hitting Efficiency |
+ 0.254 |
+
+
+
+ | Kill % |
+ 39.5% |
+
+
+
+
+
+
+
+ |
+ Dig
+ |
+
+
+
+ | Attempts |
+ 3124 |
+
+
+
+ | Digs |
+ 2235 |
+
+
+
+ | Errors |
+ 889 |
+
+
+
+ | Dig % |
+ 71.5% |
+
+
+
+
+
+
+
+ |
+ Block
+ |
+
+
+
+ | Blocks |
+ 348 |
+
+
+
+ | Errors |
+ 414 |
+
+
+
+ | Block % |
+ 31.6% |
+
+
+
+ | Error % |
+ 24.6% |
+
+
+
+
+
+
+
+ |
+ Set
+ |
+
+
+
+ | Assists |
+ 1364 |
+
+
+
+ | Errors |
+ 81 |
+
+
+
+
+
+
+
diff --git a/package.json b/package.json
index 438454dce..78ed88d12 100644
--- a/package.json
+++ b/package.json
@@ -25,15 +25,8 @@
"./dist/react/*": "./dist/react/*",
"./dist/translations/*": "./dist/translations/*"
},
- "files": [
- "dist",
- "cdn"
- ],
- "keywords": [
- "web components",
- "custom elements",
- "components"
- ],
+ "files": ["dist", "cdn"],
+ "keywords": ["web components", "custom elements", "components"],
"repository": {
"type": "git",
"url": "git+https://github.com/shoelace-style/shoelace.git"
@@ -136,9 +129,6 @@
"user-agent-data-types": "^0.3.1"
},
"lint-staged": {
- "*.{ts,js}": [
- "eslint --max-warnings 0 --cache --fix",
- "prettier --write"
- ]
+ "*.{ts,js}": ["eslint --max-warnings 0 --cache --fix", "prettier --write"]
}
}
diff --git a/src/components/layout/layout.styles.ts b/src/components/layout/layout.styles.ts
index 7c2214dc5..cebeb85ff 100644
--- a/src/components/layout/layout.styles.ts
+++ b/src/components/layout/layout.styles.ts
@@ -18,6 +18,17 @@ export default css`
--sub-header-height: 0px;
}
+ :host([disable-sticky~="banner"]) {
+ --banner-height: 0px !important;
+ }
+
+ :host([disable-sticky~="header"]) {
+ --header-height: 0px !important;
+ }
+ :host([disable-sticky~="sub-header"]) {
+ --sub-header-height: 0px !important;
+ }
+
:host([disable-sticky~="banner"]) [part~="banner"],
:host([disable-sticky~="header"]) [part~="header"],
:host([disable-sticky~="sub-header"]) [part~="sub-header"],