@import "tailwindcss";

@source "../**/*.blade.php";
@source "../**/*.js";
@source "../../vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php";
@source "../../storage/framework/views/*.php";

@plugin "daisyui" {
    /*noinspection CssUnknownProperty*/
    themes: all;
}

@layer components {
    .form-group {
        @apply flex flex-col gap-2;
    }
    .page {
        @apply flex flex-col p-3 gap-3 w-full;
    }
    .page-center {
        @apply flex flex-col gap-3 w-full h-screen justify-center items-center;
    }
    .page-center--x {
        @apply items-center;
    }
    .page-center--y {
        @apply justify-center;
    }
}

@layer utilities {
    .align-col {
        @apply flex flex-col gap-3;
    }
    .align-row {
        @apply flex flex-row gap-3 items-center;
    }
}