-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix/change logo #225
Fix/change logo #225
Conversation
PR Reviewer Guide 🔍Here are some key observations to aid the review process:
|
PR Code Suggestions ✨Explore these optional code suggestions:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ありがとう!!!
favicon の画質に関しては問題ないです!
複数のサイズの生成をしてくれているので、場面に合わせて大きな解像度が使われると思います
VSCode とかで見ると favicon として見るよりも表示領域が大きいので、それで劣化して見えたかもしれません
一つだけ、修正をお願いします
従来の traP のロゴと新規の traPortfolio のロゴでは縦横比が異なるので、PageHeader.vue
内部での
<img
:src="isMobile ? spLogo : pcLogo"
alt="traP"
:width="isMobile ? '48' : '343'"
height="48"
/>
の部分を変更してほしいです
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok です!
最後細かなサイズ調整もやってくれてありがとうございました
User description
追加したtraPortfollio のロゴを、
traPortfolio_logo_full.svg
とtraPortfolio_logo_icon.svg
としましたtraPortfolio_ui_logo~~
とした方が良ければ変更しますロゴの.svgファイルを.icoファイルに変換しましたが、(faviconとしてみる分には問題ないですが)画質が悪くなっています
より良い変換の方法を知っていたら教えて欲しいです
変換の際は、imagemagicを使って
magic {元ファイル}.svg -quality 100 -transparent white -define icon:auto-resize=16,32,48,64,128 favicon.ico
としてますPR Type
enhancement
Description
traP_logo_full_white.svg
に変更しました。traPortfolio_logo_full.svg
に、モバイル用ロゴをtraPortfolio_logo_icon.svg
に変更しました。Changes walkthrough 📝
PageFooter.vue
フッターのロゴファイルを変更
src/components/Layout/PageFooter.vue
traP_logo_full_white.svg
に変更PageHeader.vue
ヘッダーのロゴファイルを変更
src/components/Layout/PageHeader.vue
traPortfolio_logo_full.svg
に変更traPortfolio_logo_icon.svg
に変更