fixed redacted version
All checks were successful
Rebuild signaller for deprived.dev to rebuild site / Rebuild Signaller (push) Successful in 33s

This commit is contained in:
BOTAlex 2026-04-01 03:07:58 +02:00
parent d294f39ade
commit a3086b70c3
2 changed files with 7 additions and 6 deletions

View file

@ -149,16 +149,17 @@
<!-- space -->
<!-- space -->
<div class="w-full h-full flex flex-col overflow-hidden">
<div class="w-full flex flex-col overflow-hidden h-[70cm]">
<div
class="relative w-full flex justify-center {$re?.name ? 'hidden' : ''}"
>
<RepeatedSkills
class="overcozette-force text-5xl text-base-300 "
class="overcozette-force text-5xl text-secondary/32 text-base-300 "
style="transform: translateY(-90rem)"
textOverride={["REDACTED VERSION"]}
textOverride={["REDACTED_VERSION"]}
targetTextHeight={90}
targetTextWidth={150}
rotation="-25deg"
textRowPadding={"1rem"}
/>
</div>

View file

@ -4,7 +4,7 @@
export let targetTextHeight: number;
export let textRowPadding: string = "";
export let applyRotation: boolean = true;
export let rotation: string = "-45deg";
export let textOverride: string[] | undefined = undefined;
@ -38,8 +38,8 @@
<div {...$$restProps}>
{#each { length: targetTextHeight } as _, i}
<span
class="{applyRotation ? 'rotate45' : ''} SkillsText"
style="padding: {textRowPadding};"
class=" SkillsText"
style="transform: rotate({rotation}); padding: {textRowPadding};"
>
{GrabRandomString()}
</span>