Skip to content

Commit

Permalink
fix: bug in style of input
Browse files Browse the repository at this point in the history
  • Loading branch information
AmirMahdyJebreily committed Nov 22, 2024
1 parent ef66bad commit b1a156d
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 81 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -131,3 +131,4 @@ dist

assets/index.css
assets/index.css
assets/index.css
2 changes: 1 addition & 1 deletion assets/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
}

#phonenumber{
@apply py-1 px-2 bg-transparent focus:outline-none w-36 text-gray-950
@apply py-1 px-2 bg-transparent focus:outline-none w-40 text-gray-950
}

.input-container{
Expand Down
97 changes: 17 additions & 80 deletions assets/out.css
Original file line number Diff line number Diff line change
Expand Up @@ -696,7 +696,7 @@ code {
}

#phonenumber {
width: 9rem;
width: 10rem;
background-color: transparent;
padding-top: 0.25rem;
padding-bottom: 0.25rem;
Expand Down Expand Up @@ -759,21 +759,16 @@ code {
display: inline-flex;
}

.size-6 {
width: 1.5rem;
height: 1.5rem;
}

.size-5 {
width: 1.25rem;
height: 1.25rem;
}

.size-4 {
width: 1rem;
height: 1rem;
}

.size-6 {
width: 1.5rem;
height: 1.5rem;
}

.w-11\/12 {
width: 91.666667%;
}
Expand All @@ -782,14 +777,6 @@ code {
width: 100vw;
}

.w-full {
width: 100%;
}

.cursor-row-resize {
cursor: row-resize;
}

.cursor-pointer {
cursor: pointer;
}
Expand All @@ -806,44 +793,22 @@ code {
justify-content: center;
}

.gap-4 {
gap: 1rem;
}

.gap-1 {
gap: 0.25rem;
}

.gap-2 {
gap: 0.5rem;
}

.rounded-3xl {
border-radius: 1.5rem;
.gap-4 {
gap: 1rem;
}

.rounded-xl {
border-radius: 0.75rem;
.rounded-3xl {
border-radius: 1.5rem;
}

.rounded-lg {
border-radius: 0.5rem;
}

.border {
border-width: 1px;
}

.border-teal-800 {
--tw-border-opacity: 1;
border-color: rgb(17 94 89 / var(--tw-border-opacity, 1));
}

.border-teal-700 {
--tw-border-opacity: 1;
border-color: rgb(15 118 110 / var(--tw-border-opacity, 1));
}

.bg-gray-100\/60 {
background-color: rgb(243 244 246 / 0.6);
}
Expand All @@ -856,6 +821,11 @@ code {
padding: 0.5rem;
}

.px-2 {
padding-left: 0.5rem;
padding-right: 0.5rem;
}

.px-3 {
padding-left: 0.75rem;
padding-right: 0.75rem;
Expand All @@ -881,21 +851,6 @@ code {
padding-bottom: 1.5rem;
}

.px-4 {
padding-left: 1rem;
padding-right: 1rem;
}

.px-6 {
padding-left: 1.5rem;
padding-right: 1.5rem;
}

.px-2 {
padding-left: 0.5rem;
padding-right: 0.5rem;
}

.pb-2 {
padding-bottom: 0.5rem;
}
Expand All @@ -904,22 +859,14 @@ code {
padding-bottom: 1rem;
}

.pb-3 {
padding-bottom: 0.75rem;
}

.pb-6 {
padding-bottom: 1.5rem;
.pt-1 {
padding-top: 0.25rem;
}

.pt-6 {
padding-top: 1.5rem;
}

.pt-1 {
padding-top: 0.25rem;
}

.text-center {
text-align: center;
}
Expand Down Expand Up @@ -1005,16 +952,6 @@ code {
background-color: rgb(15 118 110 / var(--tw-bg-opacity, 1));
}

.hover\:text-gray-100:hover {
--tw-text-opacity: 1;
color: rgb(243 244 246 / var(--tw-text-opacity, 1));
}

.hover\:text-gray-50:hover {
--tw-text-opacity: 1;
color: rgb(249 250 251 / var(--tw-text-opacity, 1));
}

.hover\:text-white:hover {
--tw-text-opacity: 1;
color: rgb(255 255 255 / var(--tw-text-opacity, 1));
Expand Down

0 comments on commit b1a156d

Please sign in to comment.