スタッフリストのページを修正#50
Open
sat0ken wants to merge 10 commits into
Open
Conversation
✅ Deploy Preview for unrivaled-empanada-4b1c20 ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
mochi-yu
reviewed
Jul 5, 2026
| border-radius: 16px; | ||
| padding: 24px; | ||
| padding: 20px; | ||
| width: 360px; |
Contributor
There was a problem hiding this comment.
幅を固定値にしてしまうと、画面幅が狭い時にスタイルが崩れてしまいます。
width: 360px;を
max-width: 360px;
width: 100%;にして、 flex-shrink: 0; は削除し、上の grid-template-columns を以下にようにするとよさそうです。 ref: 916e82f
.staffs-grid {
display: grid;
gap: 24px;
margin-top: 32px;
justify-content: center;
grid-template-columns: repeat(3, minmax(0, 360px));
visibility: hidden;
&.staffs-grid--ready {
visibility: visible;
}
@media screen and (max-width: 1200px) {
grid-template-columns: repeat(2, minmax(0, 360px));
}
@media screen and (max-width: 800px) {
grid-template-columns: minmax(0, 360px);
}
}
masakurapa
reviewed
Jul 5, 2026
| width: 40px; | ||
| height: 40px; | ||
| width: 32px; | ||
| height: 32px; |
Co-authored-by: もっちー <43375000+mochi-yu@users.noreply.github.com>
Co-authored-by: もっちー <43375000+mochi-yu@users.noreply.github.com>
Co-authored-by: もっちー <43375000+mochi-yu@users.noreply.github.com>
Co-authored-by: もっちー <43375000+mochi-yu@users.noreply.github.com>
Co-authored-by: もっちー <43375000+mochi-yu@users.noreply.github.com>
Contributor
Author
|
英語対応は以下で行いました |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
概要
スタッフリストのページデザインを修正する
変更理由
スタッフ一覧、「Goコミュニティの好きなところ」の項目の説明が何もないから何の話か分からないのを修正する変更内容
レビュワーへの共有事項など