Skip to content

Commit

Permalink
Revert "build: fix tailwind output for storybooks #448"
Browse files Browse the repository at this point in the history
This reverts commit 0779bf4.
  • Loading branch information
MytsV authored and maany committed Aug 13, 2024
1 parent 1e1bfb5 commit cfa0368
Showing 1 changed file with 18 additions and 8 deletions.
26 changes: 18 additions & 8 deletions src/component-library/outputtailwind.css
Original file line number Diff line number Diff line change
Expand Up @@ -958,9 +958,9 @@ html {
.max-w-3xl {
max-width: 48rem;
}

.min-w-full {
min-width: 100%;

}

.max-w-sm {
Expand Down Expand Up @@ -1078,6 +1078,10 @@ html {
flex-wrap: wrap;
}

.content-center {
align-content: center;
}

.items-start {
align-items: flex-start;
}
Expand Down Expand Up @@ -1156,6 +1160,12 @@ html {
margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-8 > :not([hidden]) ~ :not([hidden]) {
--tw-space-x-reverse: 0;
margin-right: calc(2rem * var(--tw-space-x-reverse));
margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-y-1 > :not([hidden]) ~ :not([hidden]) {
--tw-space-y-reverse: 0;
margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
Expand Down Expand Up @@ -1184,14 +1194,14 @@ html {
align-self: center;
}

.overflow-hidden {
overflow: hidden;
}

.overflow-y-auto {
overflow-y: auto;
}

.overflow-x-hidden {
overflow-x: hidden;
}

.overflow-y-scroll {
overflow-y: scroll;
}
Expand Down Expand Up @@ -1651,13 +1661,13 @@ html {
background-color: rgb(133 77 14 / var(--tw-bg-opacity));
}

.p-0 {
padding: 0px;
}

.bg-opacity-50 {
--tw-bg-opacity: 0.5;
}
.p-0 {
padding: 0px;
}

.p-1 {
padding: 0.25rem;
Expand Down

0 comments on commit cfa0368

Please sign in to comment.