mirror of
https://github.com/ershisan99/coolify.git
synced 2025-12-16 12:33:03 +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.
64 lines
1.7 KiB
Svelte
64 lines
1.7 KiB
Svelte
<script>
|
|
import { SvelteToast } from "@zerodevx/svelte-toast";
|
|
import { Router } from "@roxi/routify";
|
|
import { routes } from "../.routify/routes";
|
|
const options = {
|
|
duration: 5000,
|
|
dismissable: true
|
|
};
|
|
</script>
|
|
|
|
<style lang="postcss">
|
|
:global(._toastMsg) {
|
|
@apply text-sm font-bold !important;
|
|
}
|
|
:global(._toastItem) {
|
|
@apply w-full border-l-2 border-green-600 !important;
|
|
}
|
|
:global(._toastBtn) {
|
|
@apply text-xs !important;
|
|
}
|
|
:global(._toastBtn:hover) {
|
|
@apply bg-gray-500 !important;
|
|
}
|
|
:global(.icon) {
|
|
@apply text-white rounded p-2 transition duration-100 !important;
|
|
}
|
|
:global(.icon:hover) {
|
|
@apply bg-warmGray-700 !important;
|
|
}
|
|
:global(input) {
|
|
@apply text-sm rounded py-2 px-6 font-bold bg-warmGray-800 text-white transition duration-150 outline-none !important;
|
|
}
|
|
:global(input:hover) {
|
|
@apply bg-warmGray-700 !important;
|
|
}
|
|
:global(textarea) {
|
|
@apply text-sm rounded py-2 px-6 font-bold bg-warmGray-800 text-white transition duration-150 outline-none resize-none !important;
|
|
}
|
|
:global(textarea:hover) {
|
|
@apply bg-warmGray-700 !important;
|
|
}
|
|
:global(select) {
|
|
@apply text-sm rounded py-2 px-6 font-bold bg-warmGray-800 text-white transition duration-150 outline-none !important;
|
|
}
|
|
:global(select:hover) {
|
|
@apply bg-warmGray-700 !important;
|
|
}
|
|
:global(label) {
|
|
@apply text-left text-base font-bold text-warmGray-400 !important;
|
|
}
|
|
:global(button) {
|
|
@apply outline-none !important;
|
|
}
|
|
:global(.button) {
|
|
@apply rounded text-sm font-bold transition-all duration-100 !important;
|
|
}
|
|
:global(.h-271) {
|
|
min-height: 271px !important;
|
|
}
|
|
</style>
|
|
|
|
<SvelteToast options="{options}" />
|
|
<Router routes="{routes}" />
|