vinter.
vinter.
KPCKevin Powell - Community
Created by Micah on 12/6/2024 in #front-end
text not showing with mix-blend-mode
13 replies
KPCKevin Powell - Community
Created by Micah on 12/6/2024 in #front-end
text not showing with mix-blend-mode
So you can just bind the invert to transitionend
13 replies
KPCKevin Powell - Community
Created by Micah on 12/6/2024 in #front-end
text not showing with mix-blend-mode
I assume you're doing a transition with a onClick
13 replies
KPCKevin Powell - Community
Created by TheBugCoder on 12/8/2024 in #front-end
Overlaying half of a logo on top of an image
In your case it would probably be
<section
id="streetwear"
class="flex flex-col justify-between md:h-svh px-4 md:px-12 py-7 relative"
>
<Logo outline={true} class="absolute left-0 top-0 -translate-y-[50%]" />
///
<section
id="streetwear"
class="flex flex-col justify-between md:h-svh px-4 md:px-12 py-7 relative"
>
<Logo outline={true} class="absolute left-0 top-0 -translate-y-[50%]" />
///
25 replies
KPCKevin Powell - Community
Created by TheBugCoder on 12/8/2024 in #front-end
Overlaying half of a logo on top of an image
It's a bit hard to test your specific case without a codepen but this should be what you're looking for
<div class="image>
<div class="logo"></div>
</div>
<div class="image>
<div class="logo"></div>
</div>
.image { position: relative; }
.logo {
position: absolute;
top: 0px;
left: 0px;
transform: translateY(-50%);
}
.image { position: relative; }
.logo {
position: absolute;
top: 0px;
left: 0px;
transform: translateY(-50%);
}
25 replies
KPCKevin Powell - Community
Created by Sevrin on 12/8/2024 in #front-end
Question about a bug in my website
And you might also get something to show on the resume in the process
113 replies
KPCKevin Powell - Community
Created by Sevrin on 12/8/2024 in #front-end
Question about a bug in my website
Doing personal projects is the best way to learn
113 replies
KPCKevin Powell - Community
Created by Sevrin on 12/8/2024 in #front-end
Question about a bug in my website
Yeah, that's good! Keep practicing 🙂
113 replies
KPCKevin Powell - Community
Created by Sevrin on 12/8/2024 in #front-end
Question about a bug in my website
For fun? All kinds, but mostly python / webdev fullstack with js. For work? The boring kind: migration of applications from COBOL to Java
113 replies
KPCKevin Powell - Community
Created by Sevrin on 12/8/2024 in #front-end
Question about a bug in my website
:ThumbsUp:
113 replies
KPCKevin Powell - Community
Created by Sevrin on 12/8/2024 in #front-end
Question about a bug in my website
So it will be assigned to the default value of your <input> (aka '')
113 replies
KPCKevin Powell - Community
Created by Sevrin on 12/8/2024 in #front-end
Question about a bug in my website
The assignment will happen when the <script> tag is loaded
113 replies
KPCKevin Powell - Community
Created by Sevrin on 12/8/2024 in #front-end
Question about a bug in my website
You're assigning keyCode outside of checkifCorrect
113 replies
KPCKevin Powell - Community
Created by Sevrin on 12/8/2024 in #front-end
Question about a bug in my website
Is it still this one?
113 replies
KPCKevin Powell - Community
Created by Sevrin on 12/8/2024 in #front-end
Question about a bug in my website
Send me the full code
113 replies
KPCKevin Powell - Community
Created by stealthy on 11/29/2024 in #front-end
Next JS Caching Doubts
And in that case you want to force dynamic rendering yeah
14 replies
KPCKevin Powell - Community
Created by stealthy on 11/29/2024 in #front-end
Next JS Caching Doubts
But in your case it looks like you're handling invoices which I assume are supposed to be present in the dashboard as soon as one is inserted in the db
14 replies
KPCKevin Powell - Community
Created by stealthy on 11/29/2024 in #front-end
Next JS Caching Doubts
If the only data loaded in the page isn't supposed to be completely up to date (i.e. a feed of user recommendations which are personalized but don't necessarily have to be 100% fresh) then you can ISR
14 replies
KPCKevin Powell - Community
Created by stealthy on 11/29/2024 in #front-end
Next JS Caching Doubts
Or well, it depends on how tollerant you are about the user seeing stale data
14 replies
KPCKevin Powell - Community
Created by stealthy on 11/29/2024 in #front-end
Next JS Caching Doubts
Yup
14 replies