mirror of
https://github.com/coollabsio/coolify.git
synced 2026-03-11 08:55:47 +00:00
- Search in repositories (thanks to @SaraVieira).
- Custom Dockerfile - you be able to deploy ANY applications! 🎉
- Basic repository scanner for Nextjs and React. It will setup the default commands and buildpack if it detects some defined parameters.
- UI/UX fixes:
- Github loading screen instead of standard loading screen.
- Info tooltips which provide some explanations of the input fields.
14 lines
239 B
Svelte
14 lines
239 B
Svelte
<script>
|
|
export let position = "bottom";
|
|
export let label;
|
|
export let size = "fit";
|
|
</script>
|
|
|
|
<span
|
|
aria-label="{label}"
|
|
data-microtip-position="{position}"
|
|
data-microtip-size="{size}"
|
|
role="tooltip"
|
|
>
|
|
<slot></slot>
|
|
</span>
|