fenish
fenish
Explore posts from servers
NNuxt
Created by fenish on 9/3/2024 in #❓・help
nuxt color mode except
i want all my texts turn black when light mode and all my texts turn white in dark mode how can i make it globally because my icons are changing color if i do *
3 replies
NNuxt
Created by fenish on 8/23/2024 in #❓・help
Layout transition
In my app.vue i have nuxtpage inside layout tags in my layout page i have basic html with slot tag and i called layout "auth" how can i make my indexes to slide animation for example i did this but didn't worked
<template>
<div class="screen-container">
<div class="left-container">
<div class="logo-container">
<img
src="@/assets/images/logo.png"
alt="logo"
width="230"
/>
<LoginLangSwitcher />
</div>
<Transition>
<slot />
</Transition>
</div>

<div class="right-container">
<video
class="w-full h-full object-cover"
loop
muted
playsinline
autoplay
>
<source
src="@/assets/video/login_video.mp4"
type="video/mp4"
/>
</video>
</div>
</div>
</template>

<style scoped>
.screen-container {
@apply w-screen h-screen flex
}

.right-container {
@apply hidden md:flex w-full
}

.left-container {
@apply p-10 md:p-16 flex flex-col flex-shrink-0 gap-14 w-full md:w-[600px] dark:bg-zinc-900 bg-white;
}

.logo-container {
@apply flex justify-between items-start
}

.v-enter-active,
.v-leave-active {
transition: all 0.4s;
}
.v-enter-from,
.v-leave-to {
opacity: 0;
filter: blur(1rem);
}
</style>
<template>
<div class="screen-container">
<div class="left-container">
<div class="logo-container">
<img
src="@/assets/images/logo.png"
alt="logo"
width="230"
/>
<LoginLangSwitcher />
</div>
<Transition>
<slot />
</Transition>
</div>

<div class="right-container">
<video
class="w-full h-full object-cover"
loop
muted
playsinline
autoplay
>
<source
src="@/assets/video/login_video.mp4"
type="video/mp4"
/>
</video>
</div>
</div>
</template>

<style scoped>
.screen-container {
@apply w-screen h-screen flex
}

.right-container {
@apply hidden md:flex w-full
}

.left-container {
@apply p-10 md:p-16 flex flex-col flex-shrink-0 gap-14 w-full md:w-[600px] dark:bg-zinc-900 bg-white;
}

.logo-container {
@apply flex justify-between items-start
}

.v-enter-active,
.v-leave-active {
transition: all 0.4s;
}
.v-enter-from,
.v-leave-to {
opacity: 0;
filter: blur(1rem);
}
</style>
1 replies
NNuxt
Created by fenish on 4/7/2024 in #❓・help
How can i extend in nuxt eslint module
I didn't figure out how can i extend another module for this plugin
1 replies
CC#
Created by fenish on 10/16/2023 in #help
❔ Ef core multiple projects
No description
24 replies
SIASapphire - Imagine a framework
Created by fenish on 5/24/2023 in #sapphire-support
Ready Listener doesn't work
import { Events, Listener } from "@sapphire/framework";

export class ReadyListener extends Listener {
public constructor(context: Listener.Context, options: Listener.Options) {
super(context, {
event: Events.ClientReady,
...options,
once: true,
});
}

public run() {
console.log("hello im running");
}
}
import { Events, Listener } from "@sapphire/framework";

export class ReadyListener extends Listener {
public constructor(context: Listener.Context, options: Listener.Options) {
super(context, {
event: Events.ClientReady,
...options,
once: true,
});
}

public run() {
console.log("hello im running");
}
}
12 replies
SIASapphire - Imagine a framework
Created by fenish on 4/22/2023 in #sapphire-support
Preconditions Usage
36 replies
SIASapphire - Imagine a framework
Created by fenish on 4/22/2023 in #sapphire-support
Permission or Role check with decorators
is it possible with sapphire something like if user has role with id "1098270502058995842" or if user has role "Moderator(Object)"
24 replies
SIASapphire - Imagine a framework
Created by fenish on 4/19/2023 in #sapphire-support
Broken modals
23 replies
SIASapphire - Imagine a framework
Created by fenish on 4/19/2023 in #sapphire-support
Remove old commands
17 replies
SIASapphire - Imagine a framework
Created by fenish on 4/12/2023 in #sapphire-support
create modal
im super new about djs and sapphire. for newbie sapphire is more easier than vanilla djs thats why i picked sapphire. i just checked docs and i find out how to create modals but idk how to use them can someone give example of code or example usage of modals
3 replies
SIASapphire - Imagine a framework
Created by fenish on 4/11/2023 in #sapphire-support
on ready messages
is there any chance to disable "commands initialized" message on startup ?
78 replies
SIASapphire - Imagine a framework
Created by fenish on 4/6/2023 in #sapphire-support
check if commands initialized
is there a way to check if commands initialized or not
26 replies