-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
97 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<template> | ||
<svg viewBox="0 0 480 480" fill="none" xmlns="http://www.w3.org/2000/svg"> | ||
<path | ||
d="M0 240C0 107.452 107.452 0 240 0C372.548 0 480 107.452 480 240C480 372.548 372.548 480 240 480C107.452 480 0 372.548 0 240Z" | ||
:fill="`url(#${uniqueId})`" | ||
/> | ||
<path | ||
d="M217.496 108.748C127.496 108.748 89.9961 147.201 89.9961 198.748L89.996 281.248C89.996 332.795 127.496 371.248 217.496 371.248L304.684 371.248C386.246 371.248 389.996 361.405 389.996 344.998C389.996 326.249 382.496 318.748 363.746 318.748L217.496 318.748C172.496 318.748 149.996 296.3 149.996 273.748L149.996 266.248L363.746 266.248C378.746 266.248 389.996 256.404 389.996 239.998C389.996 223.592 378.746 213.748 363.746 213.748L149.996 213.748L149.996 206.248C149.996 183.696 172.496 161.248 217.496 161.248L363.746 161.248C382.496 161.248 389.996 153.747 389.996 134.998C389.996 118.591 386.246 108.748 304.684 108.748L217.496 108.748Z" | ||
fill="white" | ||
/> | ||
<defs> | ||
<linearGradient :id="uniqueId" x1="240" y1="97.5" x2="240" y2="480" gradientUnits="userSpaceOnUse"> | ||
<stop stop-color="#7866D5" /> | ||
<stop offset="1" stop-color="#FFD964" /> | ||
</linearGradient> | ||
</defs> | ||
</svg> | ||
</template> | ||
|
||
<script setup lang="ts"> | ||
const uniqueId = `enjin-logo-${Math.random().toString(36).substr(2, 9)}`; | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters