-
Notifications
You must be signed in to change notification settings - Fork 0
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
SUM-47 Theme & Style local footer #1
Conversation
8325df5
to
610f2ca
Compare
{suLocalFootSocial && | ||
<ul className="list-unstyled flex gap-2"> | ||
<ul className="rs-mt-4 list-unstyled flex gap-11 items-center children:mb-0"> |
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 children:mb-0
instead of mb-0
on the <li>
element? I'm not asking for any changes, just curious of your choice here.
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.
Ah, this was user error 😄 I was moving some things around and added seperate <li>
item so I added children:mb-0
so that all children are targeted. I eventually removed it and forgot to rework the classes. In this case, we can definitely further specify and add className="children:mb-0"
to the <li>
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.
This comment not related to whether we use children:mb-0 on ul or mb-0 on li, but *:
has officially replaced children:
- it's in Tailwind core now 😄 @rebeccahongsf
Also, FYI, i rebased with |
src/components/elements/button.tsx
Outdated
@@ -41,7 +42,7 @@ type Props = HtmlHTMLAttributes<HTMLAnchorElement | HTMLButtonElement> & { | |||
* Disabled button element. | |||
*/ | |||
disabled?: boolean | |||
} | |||
}; | |||
|
|||
export const Button = ({ |
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.
Hover/focus colors need fixed. the text color is black on the red background. it won't pass a11y
…n, adjust footer styles
5f45c5b
to
e235df6
Compare
READY FOR REVIEW
Summary
Review By (Date)
Urgency
Review Tasks
Setup tasks and/or behavior to test
yarn dev
Site Configuration Sync
Front End Validation
Associated Issues and/or People