Skip to content

Commit

Permalink
(chore) setup prettier for svelte and fix formating issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Arnold authored and Arny committed Jan 11, 2023
1 parent 62a3886 commit a4fe2c0
Show file tree
Hide file tree
Showing 13 changed files with 248 additions and 233 deletions.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ <h3 class="demo-heading font-heading text-2xl uppercase">
</div>

<div class="hero-followup font-heading mb-12 mt-12 lg:mb-24 lg:mt-24">
<div class=" bg-navy inline-block mb-4 w-56 lg:mr-4">
<div class="bg-navy inline-block mb-4 w-56 lg:mr-4">
<a
class="button star bg-white border-2 border-navy p-6 text-navy whitespace-nowrap w-full"
href="https://github.com/shipshapecode/shepherd"
Expand Down
41 changes: 22 additions & 19 deletions landing/css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@
@tailwind components;
@tailwind utilities;

html, body {
font-family: "Pier Sans", "proxima-nova", "Helvetica Neue", sans-serif;
html,
body {
font-family: 'Pier Sans', 'proxima-nova', 'Helvetica Neue', sans-serif;
}

body {
Expand Down Expand Up @@ -39,7 +40,7 @@ a {
}

.button:hover {
background: #F3F5F5;
background: #f3f5f5;
transform: translateX(10px) translateY(-10px);
}

Expand Down Expand Up @@ -80,12 +81,12 @@ a {
}

.footer-icon path {
fill: #16202D;
fill: #16202d;
transition: 0.25s ease-in-out;
}

.footer-icon:hover path {
fill: #959FAC;
fill: #959fac;
}

.footer-logo {
Expand All @@ -104,12 +105,12 @@ pre {

.shepherd-button {
background: #ffffff;
border-top: solid 4px #16202D;
border-top: solid 4px #16202d;
border-radius: 0;
color: #16202D;
color: #16202d;
display: flex;
flex-grow: 1;
font-family: "GT Pressura", sans-serif;
font-family: 'GT Pressura', sans-serif;
font-size: 1rem;
justify-content: center;
margin: 0;
Expand All @@ -119,25 +120,25 @@ pre {
}

.shepherd-button:hover {
background: #16202D;
background: #16202d;
color: #ffffff;
}

.shepherd-button.shepherd-button-secondary {
background: #CAD5D5;
background: #cad5d5;
}

.shepherd-button.shepherd-button-secondary:hover {
color: #CAD5D5;
background: #16202D;
color: #cad5d5;
background: #16202d;
}

.shepherd-cancel-icon {
font-family: "GT Pressura", sans-serif;
font-family: 'GT Pressura', sans-serif;
}

.shepherd-element {
border: solid 4px #16202D;
border: solid 4px #16202d;
}

.shepherd-element,
Expand Down Expand Up @@ -199,7 +200,7 @@ pre {
}

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

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

.shepherd-has-title .shepherd-content .shepherd-header {
background: transparent;
font-family: "GT Pressura", sans-serif;
font-family: 'GT Pressura', sans-serif;
padding-bottom: 0;
padding-left: 2rem;
}
Expand All @@ -223,15 +224,17 @@ pre {
padding: 2rem;
}

.shepherd-text a, .shepherd-text a:visited,
.shepherd-text a,
.shepherd-text a:visited,
.shepherd-text a:active {
border-bottom: 1px dotted;
border-bottom-color: rgba(0, 0, 0, 0.75);
color: rgba(0, 0, 0, 0.75);
text-decoration: none;
}

.shepherd-text a:hover, .shepherd-text a:visited:hover,
.shepherd-text a:hover,
.shepherd-text a:visited:hover,
.shepherd-text a:active:hover {
border-bottom-style: solid;
}
}
Loading

0 comments on commit a4fe2c0

Please sign in to comment.