Skip to content

Commit

Permalink
fix blogs
Browse files Browse the repository at this point in the history
  • Loading branch information
cohenaj194 committed Sep 28, 2024
1 parent 67aa144 commit b3690dd
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 35 deletions.
1 change: 1 addition & 0 deletions app/routes/[robots.txt].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ export const loader: LoaderFunction = () => {
Allow: /ffxiv
Allow: /queries
Allow: /wow
Allow: /blog/*
Allow: /queries/item-data/*
Allow: /wow/item-data/*
Expand Down
64 changes: 29 additions & 35 deletions app/tailwind.css
Original file line number Diff line number Diff line change
Expand Up @@ -967,6 +967,14 @@ select {
margin-bottom: 1rem;
}

.mb-6 {
margin-bottom: 1.5rem;
}

.mb-8 {
margin-bottom: 2rem;
}

.ml-0 {
margin-left: 0px;
}
Expand All @@ -987,6 +995,10 @@ select {
margin-left: 1rem;
}

.ml-6 {
margin-left: 1.5rem;
}

.ml-8 {
margin-left: 2rem;
}
Expand Down Expand Up @@ -1027,6 +1039,10 @@ select {
margin-top: 2.5rem;
}

.mt-12 {
margin-top: 3rem;
}

.mt-2 {
margin-top: 0.5rem;
}
Expand All @@ -1051,22 +1067,6 @@ select {
margin-top: 2rem;
}

.ml-6 {
margin-left: 1.5rem;
}

.mb-6 {
margin-bottom: 1.5rem;
}

.mb-8 {
margin-bottom: 2rem;
}

.mt-12 {
margin-top: 3rem;
}

.block {
display: block;
}
Expand Down Expand Up @@ -1487,14 +1487,14 @@ select {
list-style-position: outside;
}

.list-disc {
list-style-type: disc;
}

.list-decimal {
list-style-type: decimal;
}

.list-disc {
list-style-type: disc;
}

.grid-cols-1 {
grid-template-columns: repeat(1, minmax(0, 1fr));
}
Expand Down Expand Up @@ -1617,12 +1617,6 @@ select {
margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}

.space-y-4 > :not([hidden]) ~ :not([hidden]) {
--tw-space-y-reverse: 0;
margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}

.divide-x > :not([hidden]) ~ :not([hidden]) {
--tw-divide-x-reverse: 0;
border-right-width: calc(1px * var(--tw-divide-x-reverse));
Expand Down Expand Up @@ -2126,6 +2120,10 @@ select {
padding-left: 0.5rem;
}

.pl-8 {
padding-left: 2rem;
}

.pr-1 {
padding-right: 0.25rem;
}
Expand Down Expand Up @@ -2154,10 +2152,6 @@ select {
padding-top: 1.25rem;
}

.pl-8 {
padding-left: 2rem;
}

.text-left {
text-align: left;
}
Expand Down Expand Up @@ -2188,6 +2182,11 @@ select {
line-height: 2.25rem;
}

.text-4xl {
font-size: 2.25rem;
line-height: 2.5rem;
}

.text-5xl {
font-size: 3rem;
line-height: 1;
Expand Down Expand Up @@ -2218,11 +2217,6 @@ select {
line-height: 1rem;
}

.text-4xl {
font-size: 2.25rem;
line-height: 2.5rem;
}

.font-bold {
font-weight: 700;
}
Expand Down

0 comments on commit b3690dd

Please sign in to comment.