mirror of
https://github.com/ershisan99/coolify.git
synced 2025-12-24 12:33:17 +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.
15 lines
239 B
Svelte
15 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>
|