Skip to content

Commit 744bec3

Browse files
ArnoldArny
Arnold
authored and
Arny
committed
(chore) setup prettier for svelte and fix formating issues
1 parent d7e67fb commit 744bec3

13 files changed

+248
-233
lines changed

index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ <h3 class="demo-heading font-heading text-2xl uppercase">
271271
</div>
272272

273273
<div class="hero-followup font-heading mb-12 mt-12 lg:mb-24 lg:mt-24">
274-
<div class=" bg-navy inline-block mb-4 w-56 lg:mr-4">
274+
<div class="bg-navy inline-block mb-4 w-56 lg:mr-4">
275275
<a
276276
class="button star bg-white border-2 border-navy p-6 text-navy whitespace-nowrap w-full"
277277
href="https://github.com/shipshapecode/shepherd"

landing/css/styles.css

+22-19
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@
22
@tailwind components;
33
@tailwind utilities;
44

5-
html, body {
6-
font-family: "Pier Sans", "proxima-nova", "Helvetica Neue", sans-serif;
5+
html,
6+
body {
7+
font-family: 'Pier Sans', 'proxima-nova', 'Helvetica Neue', sans-serif;
78
}
89

910
body {
@@ -39,7 +40,7 @@ a {
3940
}
4041

4142
.button:hover {
42-
background: #F3F5F5;
43+
background: #f3f5f5;
4344
transform: translateX(10px) translateY(-10px);
4445
}
4546

@@ -80,12 +81,12 @@ a {
8081
}
8182

8283
.footer-icon path {
83-
fill: #16202D;
84+
fill: #16202d;
8485
transition: 0.25s ease-in-out;
8586
}
8687

8788
.footer-icon:hover path {
88-
fill: #959FAC;
89+
fill: #959fac;
8990
}
9091

9192
.footer-logo {
@@ -104,12 +105,12 @@ pre {
104105

105106
.shepherd-button {
106107
background: #ffffff;
107-
border-top: solid 4px #16202D;
108+
border-top: solid 4px #16202d;
108109
border-radius: 0;
109-
color: #16202D;
110+
color: #16202d;
110111
display: flex;
111112
flex-grow: 1;
112-
font-family: "GT Pressura", sans-serif;
113+
font-family: 'GT Pressura', sans-serif;
113114
font-size: 1rem;
114115
justify-content: center;
115116
margin: 0;
@@ -119,25 +120,25 @@ pre {
119120
}
120121

121122
.shepherd-button:hover {
122-
background: #16202D;
123+
background: #16202d;
123124
color: #ffffff;
124125
}
125126

126127
.shepherd-button.shepherd-button-secondary {
127-
background: #CAD5D5;
128+
background: #cad5d5;
128129
}
129130

130131
.shepherd-button.shepherd-button-secondary:hover {
131-
color: #CAD5D5;
132-
background: #16202D;
132+
color: #cad5d5;
133+
background: #16202d;
133134
}
134135

135136
.shepherd-cancel-icon {
136-
font-family: "GT Pressura", sans-serif;
137+
font-family: 'GT Pressura', sans-serif;
137138
}
138139

139140
.shepherd-element {
140-
border: solid 4px #16202D;
141+
border: solid 4px #16202d;
141142
}
142143

143144
.shepherd-element,
@@ -199,7 +200,7 @@ pre {
199200
}
200201

201202
.shepherd-footer button:not(:last-of-type) {
202-
border-right: solid 4px #16202D;
203+
border-right: solid 4px #16202d;
203204
}
204205

205206
.shepherd-has-title .shepherd-content .shepherd-cancel-icon {
@@ -208,7 +209,7 @@ pre {
208209

209210
.shepherd-has-title .shepherd-content .shepherd-header {
210211
background: transparent;
211-
font-family: "GT Pressura", sans-serif;
212+
font-family: 'GT Pressura', sans-serif;
212213
padding-bottom: 0;
213214
padding-left: 2rem;
214215
}
@@ -223,15 +224,17 @@ pre {
223224
padding: 2rem;
224225
}
225226

226-
.shepherd-text a, .shepherd-text a:visited,
227+
.shepherd-text a,
228+
.shepherd-text a:visited,
227229
.shepherd-text a:active {
228230
border-bottom: 1px dotted;
229231
border-bottom-color: rgba(0, 0, 0, 0.75);
230232
color: rgba(0, 0, 0, 0.75);
231233
text-decoration: none;
232234
}
233235

234-
.shepherd-text a:hover, .shepherd-text a:visited:hover,
236+
.shepherd-text a:hover,
237+
.shepherd-text a:visited:hover,
235238
.shepherd-text a:active:hover {
236239
border-bottom-style: solid;
237-
}
240+
}

0 commit comments

Comments
 (0)