Skip to content

Commit

Permalink
deploy: 45cc8ae
Browse files Browse the repository at this point in the history
  • Loading branch information
noelwelsh committed Feb 13, 2024
1 parent 130bb5d commit 85f7aff
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 4 deletions.
8 changes: 6 additions & 2 deletions creative-scala.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
! tailwindcss v3.3.6 | MIT License | https://tailwindcss.com
! tailwindcss v3.4.1 | MIT License | https://tailwindcss.com
*/

/*
Expand Down Expand Up @@ -32,9 +32,11 @@
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html {
html,
:host {
line-height: 1.5;
/* 1 */
-webkit-text-size-adjust: 100%;
Expand All @@ -50,6 +52,8 @@ html {
/* 5 */
font-variation-settings: normal;
/* 6 */
-webkit-tap-highlight-color: transparent;
/* 7 */
}

/*
Expand Down
12 changes: 11 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,17 @@ <h1 id="gooey" class="title">Gooey</h1>
<h2 id="getting-started" class="section">Getting Started</h2>
<p>To use Gooey, add the following to your <code>build.sbt</code></p>
<pre><code class="nohighlight"><span class="identifier">resolvers</span><span> ++= </span><span class="type-name">Resolver</span><span>.</span><span class="identifier">sonatypeOssRepos</span><span>(</span><span class="string-literal">&quot;snapshots&quot;</span><span>)
</span><span class="identifier">libraryDependencies</span><span> += </span><span class="string-literal">&quot;org.creativescala&quot;</span><span> %% </span><span class="string-literal">&quot;gooey-core&quot;</span><span> % </span><span class="string-literal">&quot;0.1-506e1b8-SNAPSHOT&quot;</span></code></pre>

</span><span class="comment">// Use this for JVM projects
</span><span class="identifier">libraryDependencies</span><span> += </span><span class="string-literal">&quot;org.creativescala&quot;</span><span> %% </span><span class="string-literal">&quot;gooey-core&quot;</span><span> % </span><span class="string-literal">&quot;0.1-45cc8ae-SNAPSHOT&quot;</span><span>

</span><span class="comment">// Use this for Javascript / web projects, or projects targetting both the JVM and Javascript
</span><span class="identifier">libraryDependencies</span><span> += </span><span class="string-literal">&quot;org.creativescala&quot;</span><span> %%% </span><span class="string-literal">&quot;gooey-core&quot;</span><span> % </span><span class="string-literal">&quot;0.1-45cc8ae-SNAPSHOT&quot;</span></code></pre>
<p>You&#39;ll also need to add the particular backend you intend to use.</p>
<p>For the Calico backend:</p>
<pre><code class="nohighlight"><span class="identifier">libraryDependencies</span><span> += </span><span class="string-literal">&quot;org.creativescala&quot;</span><span> %%% </span><span class="string-literal">&quot;gooey-calico&quot;</span><span> % </span><span class="string-literal">&quot;0.1-45cc8ae-SNAPSHOT&quot;</span></code></pre>
<p>For the Swing backend:</p>
<pre><code class="nohighlight"><span class="identifier">libraryDependencies</span><span> += </span><span class="string-literal">&quot;org.creativescala&quot;</span><span> %%% </span><span class="string-literal">&quot;gooey-swing&quot;</span><span> % </span><span class="string-literal">&quot;0.1-45cc8ae-SNAPSHOT&quot;</span></code></pre>

<h2 id="scaladoc" class="section">ScalaDoc</h2>
<p>See the ScalaDoc <a href="https://javadoc.io/doc/org.creativescala/gooey-docs_3/latest/gooey/index.html">index</a> for API documentation.</p>
Expand Down
2 changes: 1 addition & 1 deletion main.js.map

Large diffs are not rendered by default.

0 comments on commit 85f7aff

Please sign in to comment.