diff --git a/public/devcycle-togglebot-full-colour.svg b/public/devcycle-togglebot-full-colour.svg index b19a125..bd0111b 100644 --- a/public/devcycle-togglebot-full-colour.svg +++ b/public/devcycle-togglebot-full-colour.svg @@ -1,54 +1,14 @@ - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + diff --git a/public/favicon.svg b/public/favicon.svg index 0fcd277..a86b81f 100644 --- a/public/favicon.svg +++ b/public/favicon.svg @@ -1,24 +1,14 @@ - - - - - + + + + + + + + + + + + + diff --git a/public/togglebot-wink.png b/public/togglebot-wink.png deleted file mode 100644 index a02d115..0000000 Binary files a/public/togglebot-wink.png and /dev/null differ diff --git a/public/togglebot-wink.svg b/public/togglebot-wink.svg new file mode 100644 index 0000000..25cef6d --- /dev/null +++ b/public/togglebot-wink.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/togglebot.png b/public/togglebot.png deleted file mode 100644 index e3db889..0000000 Binary files a/public/togglebot.png and /dev/null differ diff --git a/public/togglebot.svg b/public/togglebot.svg new file mode 100644 index 0000000..5a905bd --- /dev/null +++ b/public/togglebot.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/App.css b/src/App.css index 250a250..245646b 100644 --- a/src/App.css +++ b/src/App.css @@ -107,8 +107,8 @@ code { } .ToggleBot-logo { - height: 220px; - margin: 1em; + height: 200px; + margin: 2em 1em; pointer-events: none; } diff --git a/src/components/ToggleBot.tsx b/src/components/ToggleBot.tsx index f12f47d..d6f42cd 100644 --- a/src/components/ToggleBot.tsx +++ b/src/components/ToggleBot.tsx @@ -47,7 +47,7 @@ const getMessage = (spinSpeed: string) => { const getImageSource = (spinSpeed: string, shouldWink: boolean) => { if (spinSpeed === 'surprise') return 'unicorn.svg' - return shouldWink ? 'togglebot-wink.png' : 'togglebot.png' + return shouldWink ? 'togglebot-wink.svg' : 'togglebot.svg' } export default ToggleBot;