Skip to content

Commit

Permalink
Adjusted spacing before/after TextInput
Browse files Browse the repository at this point in the history
  • Loading branch information
ArturHD committed Oct 24, 2023
1 parent b32ba95 commit 44d44ec
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion apps/python-dsl/src/projections/timesProjection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ for ${times_var} in range(${times_value}):
// todo: fix unnecessary indent
export const widget = simpleProjection([
times_value,
".times with",
".times with ",
times_var,
":",
]);
Expand Down
6 changes: 3 additions & 3 deletions packages/projections/TextInput.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@
vertical-align: top;
align-items: center;
position: relative;
margin: 0 5px;
margin: 0px 0px;
&::after {
content: attr(data-value);
Expand Down Expand Up @@ -247,7 +247,7 @@
label::after,
input {
width: auto;
min-width: 1em;
min-width: 0em;
grid-area: 1 / 2;
font: inherit;
margin: 0;
Expand All @@ -257,7 +257,7 @@
outline: none;
display: inline-block;
padding: 2px 4px;
padding: 0px 0px;
border: 1px solid transparent;
border-radius: 3px;
}
Expand Down

0 comments on commit 44d44ec

Please sign in to comment.