Skip to content

Commit

Permalink
fix: Include spacing in width for inline horizontal components #2251 (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
marek-mihok authored Feb 23, 2024
1 parent 721273a commit ba84772
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion tools/showcase/showcase.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,9 @@ def main():

try:
os.makedirs(example_file_path)
wave_server = subprocess.Popen(['make', 'run'], cwd=os.path.join('..', '..'), stderr=subprocess.DEVNULL, preexec_fn=os.setsid) # noqa
env = os.environ.copy()
env['H2O_WAVE_RECONNECT_TIMEOUT'] = "0s"
wave_server = subprocess.Popen(['make', 'run'], cwd=os.path.join('..', '..'), stderr=subprocess.DEVNULL, preexec_fn=os.setsid, env=env) # noqa
time.sleep(1)

retries = 3
Expand Down
3 changes: 2 additions & 1 deletion ui/src/form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,8 @@ const
alignItems: 'center',
$nest: {
'> [data-visible="true"] ~ div': {
marginLeft: 8
paddingLeft: 8,
boxSizing: 'border-box'
}
}
},
Expand Down

0 comments on commit ba84772

Please sign in to comment.