Skip to content

Commit

Permalink
btn output
Browse files Browse the repository at this point in the history
  • Loading branch information
tomphill committed Nov 5, 2022
1 parent f993e60 commit 5e35a6e
Showing 1 changed file with 40 additions and 5 deletions.
45 changes: 40 additions & 5 deletions dist/output.css
Original file line number Diff line number Diff line change
Expand Up @@ -635,11 +635,6 @@ h6{
border-radius: 0.5rem;
}

.btn-rose-900{
background-color: #881337;
color: white;
}

.btn-\[\#000\]{
background-color: #000;
color: white;
Expand Down Expand Up @@ -748,6 +743,11 @@ h6{
margin-bottom: 1rem;
}

.mx-10{
margin-left: 2.5rem;
margin-right: 2.5rem;
}

.ml-auto{
margin-left: auto;
}
Expand Down Expand Up @@ -788,6 +788,14 @@ h6{
margin-left: -8px;
}

.ml-10{
margin-left: 2.5rem;
}

.-mr-10{
margin-right: -2.5rem;
}

.block{
display: block;
}
Expand Down Expand Up @@ -872,6 +880,14 @@ h6{
width: 1rem;
}

.w-\[calc\(100\%-200px\)\]{
width: calc(100% - 200px);
}

.w-\[calc\(100\%-100px\)\]{
width: calc(100% - 100px);
}

.min-w-\[80\%\]{
min-width: 80%;
}
Expand Down Expand Up @@ -1006,6 +1022,10 @@ h6{
overflow-x: auto;
}

.scroll-smooth{
scroll-behavior: smooth;
}

.whitespace-nowrap{
white-space: nowrap;
}
Expand Down Expand Up @@ -1179,6 +1199,16 @@ h6{
padding-right: 0.75rem;
}

.px-5{
padding-left: 1.25rem;
padding-right: 1.25rem;
}

.px-10{
padding-left: 2.5rem;
padding-right: 2.5rem;
}

.pr-4{
padding-right: 1rem;
}
Expand Down Expand Up @@ -1371,6 +1401,11 @@ h6{
color: rgb(228 228 231 / var(--tw-text-opacity));
}

.hover\:underline:hover{
-webkit-text-decoration-line: underline;
text-decoration-line: underline;
}

.hover\:shadow-lg:hover{
--tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
Expand Down

0 comments on commit 5e35a6e

Please sign in to comment.