This commit is contained in:
parent
b2e6ac610f
commit
f650f319bc
2 changed files with 2 additions and 2 deletions
|
@ -128,7 +128,7 @@ function App() {
|
||||||
"max-width": "1.5em"
|
"max-width": "1.5em"
|
||||||
}} src="https://cdn.jsdelivr.net/gh/twitter/twemoji@14.0.2/assets/72x72/1f525.png" />
|
}} src="https://cdn.jsdelivr.net/gh/twitter/twemoji@14.0.2/assets/72x72/1f525.png" />
|
||||||
</div>
|
</div>
|
||||||
<div class="musicbutton" onclick={(e) => {
|
<div class="musicbutton" onclick={() => {
|
||||||
setoomfies(
|
setoomfies(
|
||||||
<>
|
<>
|
||||||
<SingularOomfie name='nea' discordid='310702108997320705' url='https://nea.moe'></SingularOomfie>
|
<SingularOomfie name='nea' discordid='310702108997320705' url='https://nea.moe'></SingularOomfie>
|
||||||
|
|
|
@ -6,7 +6,7 @@ export function AdvancedBr({ count }: { count: number }) {
|
||||||
return new Array(count).fill(null).map(_ => (<br />))
|
return new Array(count).fill(null).map(_ => (<br />))
|
||||||
}
|
}
|
||||||
|
|
||||||
export function SingularOomfie({ name, url, discordid }: { name: string, url: string, discordid: string }) {
|
export function SingularOomfie({ url, discordid }: { name: string, url: string, discordid: string }) {
|
||||||
return <a href={url}><img class="tooltip" style={{
|
return <a href={url}><img class="tooltip" style={{
|
||||||
"max-width": "3em",
|
"max-width": "3em",
|
||||||
"border-radius": "30%"
|
"border-radius": "30%"
|
||||||
|
|
Loading…
Reference in a new issue