Skip to content

Commit

Permalink
commit built css file
Browse files Browse the repository at this point in the history
  • Loading branch information
DougAnderson444 committed Apr 27, 2024
1 parent 74bbdcf commit 70b4c6b
Showing 1 changed file with 153 additions and 0 deletions.
153 changes: 153 additions & 0 deletions crates/seed-keeper-wit-ui/output.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,153 @@
/* @tailwind base; */

/* @tailwind components; */

.m-2 {
margin: 0.5rem
}

.mt-2 {
margin-top: 0.5rem
}

.flex {
display: flex
}

.hidden {
display: none
}

.w-full {
width: 100%
}

.flex-1 {
flex: 1 1 0%
}

.flex-col {
flex-direction: column
}

.flex-col-reverse {
flex-direction: column-reverse
}

.rounded {
border-radius: 0.25rem
}

.border {
border-width: 1px
}

.border-amber-500 {
--tw-border-opacity: 1;
border-color: rgb(245 158 11 / var(--tw-border-opacity))
}

.border-blue-400 {
--tw-border-opacity: 1;
border-color: rgb(96 165 250 / var(--tw-border-opacity))
}

.bg-blue-100 {
--tw-bg-opacity: 1;
background-color: rgb(219 234 254 / var(--tw-bg-opacity))
}

.bg-blue-500 {
--tw-bg-opacity: 1;
background-color: rgb(59 130 246 / var(--tw-bg-opacity))
}

.p-2 {
padding: 0.5rem
}

.p-4 {
padding: 1rem
}

.text-2xl {
font-size: 1.5rem;
line-height: 2rem
}

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

.font-bold {
font-weight: 700
}

.font-semibold {
font-weight: 600
}

.italic {
font-style: italic
}

.text-blue-600 {
--tw-text-opacity: 1;
color: rgb(37 99 235 / var(--tw-text-opacity))
}

.text-neutral-700 {
--tw-text-opacity: 1;
color: rgb(64 64 64 / var(--tw-text-opacity))
}

.text-red-500 {
--tw-text-opacity: 1;
color: rgb(239 68 68 / var(--tw-text-opacity))
}

.text-red-600 {
--tw-text-opacity: 1;
color: rgb(220 38 38 / var(--tw-text-opacity))
}

.text-white {
--tw-text-opacity: 1;
color: rgb(255 255 255 / var(--tw-text-opacity))
}

.underline {
text-decoration-line: underline
}

.hover\:bg-blue-700:hover {
--tw-bg-opacity: 1;
background-color: rgb(29 78 216 / var(--tw-bg-opacity))
}

.group:invalid .group-invalid\:pointer-events-none {
pointer-events: none
}

.group:invalid .group-invalid\:opacity-30 {
opacity: 0.3
}

.peer:not(:-moz-placeholder-shown):not(:focus):invalid ~ .peer-\[\&\:not\(\:-moz-placeholder-shown\)\:not\(\:focus\)\:invalid\]\:block {
display: block
}

.peer:not(:placeholder-shown):not(:focus):invalid ~ .peer-\[\&\:not\(\:placeholder-shown\)\:not\(\:focus\)\:invalid\]\:block {
display: block
}

.invalid\:\[\&\:not\(\:-moz-placeholder-shown\)\:not\(\:focus\)\]\:border-red-500:not(:-moz-placeholder-shown):not(:focus):invalid {
--tw-border-opacity: 1;
border-color: rgb(239 68 68 / var(--tw-border-opacity))
}

.invalid\:\[\&\:not\(\:placeholder-shown\)\:not\(\:focus\)\]\:border-red-500:not(:placeholder-shown):not(:focus):invalid {
--tw-border-opacity: 1;
border-color: rgb(239 68 68 / var(--tw-border-opacity))
}

0 comments on commit 70b4c6b

Please sign in to comment.