Round brews carousel label edges and scope label styling to carousel captions - #677
Open
conorheffron with Copilot wants to merge 4 commits into
Open
Round brews carousel label edges and scope label styling to carousel captions#677conorheffron with Copilot wants to merge 4 commits into
conorheffron with Copilot wants to merge 4 commits into
Conversation
Agent-Logs-Url: https://github.com/conorheffron/ironoc/sessions/13033b62-cd79-4a9c-a074-3021264d2820 Co-authored-by: conorheffron <8218626+conorheffron@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Add rounded label edges on coffee items in brews carousel
Round brews carousel label edges and scope label styling to carousel captions
May 23, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
Rounds the brews carousel yellow label corners and scopes the styling to a dedicated class to prevent the previous overly-broad h3, h5 selector from leaking onto unrelated headings.
Changes:
- Added
coffee-carousel-labelclass to the title (h3) and ingredients (h5) inCoffeeCarousel. - Replaced
.carousel-caption h3, h5with.carousel-caption .coffee-carousel-labeland addedborder-radius: 12px. - Added a test asserting both headings carry the new class.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| frontend/src/components/CoffeeCarousel.js | Adds coffee-carousel-label class to title and ingredients headings. |
| frontend/src/App.css | Scopes the yellow label style to the new class and adds rounded corners. |
| frontend/src/components/tests/CoffeCarousel.test.js | New test confirming both headings render with the new class. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
conorheffron
marked this pull request as ready for review
June 7, 2026 06:44
Owner
|
@copilot resolve the merge conflicts in this pull request |
…abel-edges # Conflicts: # frontend/src/App.css # frontend/src/components/CoffeeCarousel.js # frontend/src/components/__tests__/CoffeCarousel.test.js
….css, CoffeeCarousel.js, CoffeCarousel.test.js
Contributor
Author
Merge conflicts resolved in commit
All 5 CoffeeCarousel tests pass. |
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.
The brews carousel labels (yellow title/ingredients blocks) currently render with square corners and inconsistent styling scope. This update rounds the label edges to match tile/container styling and tightens CSS targeting to only carousel labels.
UI styling update
Selector scoping fix
h3, h5selector pattern with a class-based selector under.carousel-captionto avoid unintended globalh5styling.Component-level test coverage
CoffeeCarouselcarry the new label class.Reference screenshot from issue context: