Skip to content

Commit

Permalink
Merge branch 'feature/TECH-776' of https://github.com/TrellisCommerce…
Browse files Browse the repository at this point in the history
…/shopify-tailwind-starter-base into feature/TECH-776
  • Loading branch information
ChelseyRiewerTrellis committed Oct 10, 2024
2 parents e7c4b27 + 2845a42 commit 21051a8
Showing 1 changed file with 58 additions and 0 deletions.
58 changes: 58 additions & 0 deletions assets/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -554,10 +554,30 @@ video {
display: none;
}

.twcss-fixed {
position: fixed;
}

.twcss-relative {
position: relative;
}

.twcss-bottom-0 {
bottom: 0px;
}

.twcss-left-0 {
left: 0px;
}

.twcss-right-0 {
right: 0px;
}

.twcss-top-0 {
top: 0px;
}

.twcss-z-0 {
z-index: 0;
}
Expand Down Expand Up @@ -603,10 +623,18 @@ video {
flex: 1 1 0%;
}

.twcss-cursor-pointer {
cursor: pointer;
}

.twcss-flex-col {
flex-direction: column;
}

.twcss-gap-2 {
gap: 0.5rem;
}

.twcss-gap-3 {
gap: 0.75rem;
}
Expand All @@ -619,11 +647,41 @@ video {
gap: 1.25rem;
}

.twcss-gap-6 {
gap: 1.5rem;
}

.twcss-self-center {
align-self: center;
}

.twcss-border-t-2 {
border-top-width: 2px;
}

.twcss-border-gray-200 {
--tw-border-opacity: 1;
border-color: rgb(229 231 235 / var(--tw-border-opacity));
}

.twcss-bg-gray-100 {
--tw-bg-opacity: 1;
background-color: rgb(243 244 246 / var(--tw-bg-opacity));
}

.twcss-object-cover {
-o-object-fit: cover;
object-fit: cover;
}

.twcss-p-8 {
padding: 2rem;
}

.twcss-text-center {
text-align: center;
}

.twcss-text-base {
font-size: 1rem;
line-height: 1.5rem;
Expand Down

0 comments on commit 21051a8

Please sign in to comment.