Skip to content

Commit

Permalink
fix: fix CSS
Browse files Browse the repository at this point in the history
  • Loading branch information
bluefieldcreator authored Oct 30, 2023
1 parent ed8549a commit 43f6d2e
Showing 1 changed file with 32 additions and 31 deletions.
63 changes: 32 additions & 31 deletions resources/output.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
! tailwindcss v3.3.3 | MIT License | https://tailwindcss.com
! tailwindcss v3.3.5 | MIT License | https://tailwindcss.com
*/

/*
Expand Down Expand Up @@ -41,8 +41,7 @@ html {
/* 2 */
-moz-tab-size: 4;
/* 3 */
-o-tab-size: 4;
tab-size: 4;
tab-size: 4;
/* 3 */
font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
/* 4 */
Expand Down Expand Up @@ -366,13 +365,6 @@ textarea {
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
opacity: 1;
/* 1 */
color: #9ca3af;
/* 2 */
}

input::placeholder,
textarea::placeholder {
opacity: 1;
Expand Down Expand Up @@ -434,7 +426,7 @@ video {
display: none;
}

*, ::before, ::after {
*, ::before, ::after{
--tw-border-spacing-x: 0;
--tw-border-spacing-y: 0;
--tw-translate-x: 0;
Expand Down Expand Up @@ -484,7 +476,7 @@ video {
--tw-backdrop-sepia: ;
}

::backdrop {
::backdrop{
--tw-border-spacing-x: 0;
--tw-border-spacing-y: 0;
--tw-translate-x: 0;
Expand Down Expand Up @@ -534,61 +526,69 @@ video {
--tw-backdrop-sepia: ;
}

.flex {
.absolute{
position: absolute;
}

.bottom-0{
bottom: 0px;
}

.right-0{
right: 0px;
}

.flex{
display: flex;
}

.h-screen {
.h-screen{
height: 100vh;
}

.w-screen {
width: 100vw;
.w-32{
width: 8rem;
}

.list-disc {
list-style-type: disc;
.w-screen{
width: 100vw;
}

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

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

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

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

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

.p-5 {
padding: 1.25rem;
}

.text-sm {
.text-sm{
font-size: 0.875rem;
line-height: 1.25rem;
}

.text-xl {
.text-xl{
font-size: 1.25rem;
line-height: 1.75rem;
}

.font-thin {
.font-thin{
font-weight: 100;
}

Expand All @@ -599,5 +599,6 @@ video {
}

a:hover {
text-decoration-line: underline;
-webkit-text-decoration-line: underline;
text-decoration-line: underline;
}

0 comments on commit 43f6d2e

Please sign in to comment.