diff --git a/app/helpers/stream_entries_helper.rb b/app/helpers/stream_entries_helper.rb index 7f76ccb4f..4b49218ca 100644 --- a/app/helpers/stream_entries_helper.rb +++ b/app/helpers/stream_entries_helper.rb @@ -35,7 +35,7 @@ module StreamEntriesHelper end def svg_logo - content_tag(:svg, tag(:use, 'xlink:href' => '#mastodon-svg-logo'), 'viewBox' => '0 0 216.4144 232.00976') + content_tag(:svg, tag(:use, 'xlink:href' => '#hometownlogo'), 'viewBox' => '0 0 611.55 611.55') end def svg_logo_full diff --git a/app/javascript/images/hometownlogo.svg b/app/javascript/images/hometownlogo.svg new file mode 100644 index 000000000..8133a5cc6 --- /dev/null +++ b/app/javascript/images/hometownlogo.svg @@ -0,0 +1 @@ + diff --git a/app/javascript/mastodon/features/introduction/index.js b/app/javascript/mastodon/features/introduction/index.js index 989f33e9c..22d6ecf4c 100644 --- a/app/javascript/mastodon/features/introduction/index.js +++ b/app/javascript/mastodon/features/introduction/index.js @@ -8,7 +8,7 @@ import { closeOnboarding } from '../../actions/onboarding'; import screenHello from '../../../images/screen_hello.svg'; import screenFederation from '../../../images/screen_federation.svg'; import screenInteractions from '../../../images/screen_interactions.svg'; -import logoTransparent from '../../../images/logo_transparent.svg'; +import hometownlogo from '../../../images/hometownlogo.svg'; const FrameWelcome = ({ domain, onNext }) => (
diff --git a/app/views/layouts/application.html.haml b/app/views/layouts/application.html.haml index 747d80bf0..5bf199a21 100755 --- a/app/views/layouts/application.html.haml +++ b/app/views/layouts/application.html.haml @@ -35,5 +35,5 @@ = content_for?(:content) ? yield(:content) : yield %div{ style: 'display: none'} - = render file: Rails.root.join('app', 'javascript', 'images', 'logo_transparent.svg') + = render file: Rails.root.join('app', 'javascript', 'images', 'hometownlogo.svg') = render file: Rails.root.join('app', 'javascript', 'images', 'logo_full.svg')