Author: David East [davideast@users.noreply.github.com]
Committer: GitHub [noreply@github.com] Sat, 22 Jan 2022 20:19:50 +0000
Hash: 0a5c31fc15071e2343877f810f01130d49ca97a5
Timestamp: Sat, 22 Jan 2022 20:19:50 +0000 (2 years ago)

+23 -0 +/-2 browse
examples
1diff --git a/docsite/index.css b/docsite/index.css
2index b642410..0f9f1ce 100644
3--- a/docsite/index.css
4+++ b/docsite/index.css
5 @@ -1517,3 +1517,10 @@ input[type="range"] {
6 .prevent-justify-item-wrap {
7 white-space: nowrap;
8 }
9+
10+ .btn-solid {
11+ --_bg: var(--blue-6);
12+ --_border: var(--blue-5);
13+ --_text: var(--blue-0);
14+ --_ink-shadow: 0 1px 0 var(--blue-8);
15+ }
16 diff --git a/docsite/index.html b/docsite/index.html
17index dcce511..ef28905 100644
18--- a/docsite/index.html
19+++ b/docsite/index.html
20 @@ -2775,6 +2775,22 @@
21 <input type="file" value="Upload" />
22 </div>
23 </div>
24+ <div>
25+ <h5>Easily customized</h5>
26+ <div class="var-examples">
27+ <pre class="language-css"><code>
28+ .btn-solid {
29+ --_bg: var(--blue-6);
30+ --_border: var(--blue-5);
31+ --_text: var(--blue-0);
32+ --_ink-shadow: 0 1px 0 var(--blue-8);
33+ }
34+ </code></pre>
35+ </div>
36+ <div>
37+ <button class="btn-solid">Custom</button>
38+ </div>
39+ </div>
40 </div>
41 </section>
42