@hustle-together/api-dev-tools 2.0.2 → 2.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/demo/workflow-demo.html +11 -11
- package/package.json +1 -1
package/demo/workflow-demo.html
CHANGED
|
@@ -721,19 +721,20 @@
|
|
|
721
721
|
display: flex;
|
|
722
722
|
justify-content: center;
|
|
723
723
|
align-items: center;
|
|
724
|
-
gap:
|
|
724
|
+
gap: 20px;
|
|
725
725
|
margin-bottom: 15px;
|
|
726
|
-
flex-wrap:
|
|
726
|
+
flex-wrap: nowrap;
|
|
727
727
|
text-align: center;
|
|
728
728
|
}
|
|
729
729
|
|
|
730
730
|
.hustle-word {
|
|
731
|
-
font-size: 5rem;
|
|
731
|
+
font-size: 3.5rem;
|
|
732
732
|
font-family: 'Fredoka', sans-serif;
|
|
733
733
|
font-weight: 700;
|
|
734
|
-
letter-spacing:
|
|
734
|
+
letter-spacing: 3px;
|
|
735
735
|
opacity: 0;
|
|
736
736
|
transform: translateY(30px);
|
|
737
|
+
white-space: nowrap;
|
|
737
738
|
}
|
|
738
739
|
|
|
739
740
|
.hustle-highlight {
|
|
@@ -857,11 +858,12 @@
|
|
|
857
858
|
|
|
858
859
|
@media (max-width: 768px) {
|
|
859
860
|
.hustle-word {
|
|
860
|
-
font-size:
|
|
861
|
-
letter-spacing:
|
|
861
|
+
font-size: 1.5rem;
|
|
862
|
+
letter-spacing: 2px;
|
|
862
863
|
}
|
|
863
864
|
.hustle-brand {
|
|
864
|
-
gap:
|
|
865
|
+
gap: 8px;
|
|
866
|
+
flex-wrap: wrap;
|
|
865
867
|
}
|
|
866
868
|
.phase-flow {
|
|
867
869
|
gap: 10px;
|
|
@@ -1601,12 +1603,10 @@
|
|
|
1601
1603
|
<div class="ascii-border">
|
|
1602
1604
|
<div class="hustle-brand" id="hustleBrand">
|
|
1603
1605
|
<span class="hustle-word">HUSTLE</span>
|
|
1604
|
-
<span class="hustle-word hustle-highlight">API</span>
|
|
1605
|
-
<span class="hustle-word hustle-highlight">DEV</span>
|
|
1606
|
-
<span class="hustle-word">TOOLS</span>
|
|
1606
|
+
<span class="hustle-word hustle-highlight">API-DEV-TOOLS</span>
|
|
1607
1607
|
</div>
|
|
1608
1608
|
<div class="package-name" id="packageName">@hustle-together/api-dev-tools</div>
|
|
1609
|
-
<div class="version" id="versionText">v2.0.
|
|
1609
|
+
<div class="version" id="versionText">v2.0.3</div>
|
|
1610
1610
|
<p class="tagline">"Hustle together. Share resources. Build stronger."<span class="cursor"></span></p>
|
|
1611
1611
|
|
|
1612
1612
|
<div class="intro-text">
|
package/package.json
CHANGED