-
Notifications
You must be signed in to change notification settings - Fork 2
Salimsara/enhancement/556 complete gameart page redesign #584
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
Merged
Skoivumaki
merged 16 commits into
dev
from
salimsara/enhancement/556-complete-gameart-page-redesign-2-2
Dec 4, 2025
Merged
Changes from 13 commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
538d413
SectionCard component creation + implementation
salimsara cddf941
Resolved image rendering issues with SectionCard + made Sidebar visibβ¦
salimsara b9a233b
Adjusted layout
salimsara a368acb
Fix layout
salimsara ddd825d
Small fixes to enhance visual look
salimsara 8f80ccb
Adjusting visual details
salimsara 8bbc69c
Small fixes
salimsara b59332f
Small fixes to SectionCard styles
salimsara c2ac43a
Fixing SectionCard image shape
salimsara af99cba
Small fix to SectionCard Triangle
salimsara b5308db
Fixing the SectionCard image view
salimsara 6e29148
Fixed mobile nav bar width
salimsara 3a7fb62
Fixed gap between title and dropdown navbar
salimsara c704ad2
Restored breakpoint to media query
salimsara 10200d3
Fixed section navigation
salimsara f0144fd
Adjusted margin between text and image in the Sectioncard on tablet.
salimsara File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
4 changes: 4 additions & 0 deletions
4
frontend-next-migration/src/preparedPages/GameArtPage/ui/GameArtPage.module.scss
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,8 @@ | ||
| .Title { | ||
| padding-left: 5%; | ||
| margin-bottom: 25px; | ||
|
|
||
| @media (max-width: breakpoint(lg)) { | ||
| margin-bottom: -30px; | ||
| } | ||
| } |
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
Binary file removed
BIN
-302 KB
frontend-next-migration/src/shared/assets/images/gameArt/implementation.webp
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-476 KB
frontend-next-migration/src/shared/assets/images/gameArt/joinus.webp
Binary file not shown.
Binary file removed
BIN
-498 KB
frontend-next-migration/src/shared/assets/images/gameArt/message.webp
Binary file not shown.
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
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
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.
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.
Why did you remove the breakpoint?
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.
I removed the breakpoint because I wanted the padding-top to also apply at screen width (1023px), which is exactly between the lg and xl breakpoints. Since that screen width is where sidebar switches to a dropdown, and that creates a gap between the dropdown and the title (which doesn't align with the Figma design). No problem, I will put it back.