Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
mhmo91 committed Dec 21, 2024
1 parent 76ded6d commit 541bcf7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mhmo91/schmancy",
"version": "0.0.278",
"version": "0.0.279",
"description": "UI library build with web components",
"main": "./dist/index.js",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion src/input/input.ts
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ export default class SchmancyInput extends TailwindElement(style) {

protected render(): unknown {
const classes = {
'flex-1 h-[50px] rounded-[8px] border-0 px-[4px] md:px-[16px]': true,
'w-full flex-1 h-[50px] rounded-[8px] border-0 px-[8px] sm:px-[12px] md:px-[16px]': true,
'disabled:opacity-40 disabled:cursor-not-allowed': true,
'placeholder:text-muted': true,
'ring-0 ring-inset focus:ring-1 focus:ring-inset': true,
Expand Down
2 changes: 1 addition & 1 deletion src/textarea/textarea.ts
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ export default class SchmancyTextarea extends TailwindElement(style) {

protected render(): unknown {
const classes = {
'w-full rounded-[8px] border-0 px-[16px] py-[8px]': true,
'w-full rounded-[8px] border-0 px-[8px] sm:px-[12px] md:px-[16px] py-[8px]': true,
'disabled:opacity-40 disabled:cursor-not-allowed': true,
'placeholder:text-muted': true,
'ring-0 ring-inset focus:ring-1 focus:ring-inset': true,
Expand Down

0 comments on commit 541bcf7

Please sign in to comment.