Skip to content
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

update h2 and selection of text #418

Merged
merged 3 commits into from
Oct 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion components/contact/ContactProvinceRow.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@ const ContactProvinceRow = ({ label, items, id }) => {
<Collapse title={label} id={id} dataTestId={`dataTest`}>
<div className="grid text-xl grid-cols-2" data-cy="mailContactDetails">
{items.map((x, i) => (
<div className="col-span-2 md:col-span-1 py-3" key={i}>
<div
className="col-span-2 md:col-span-1 py-3 select-text cursor-default"
key={i}
>
<strong className="prose prose-strong:text-xl prose-strong:font-display prose-p:text-xl prose-p:font-display">
<Markdown>{`${ap(x.content, ' ')}`}</Markdown>
</strong>
Expand Down
1 change: 0 additions & 1 deletion pages/security-settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ export default function SecuritySettings(props) {
{props.content.securityQuestions.linkTitle.text}
</Link>
<p className="mb-8 text-xl">{props.content.securityQuestions.subTitle}</p>

<Link
className="underline text-blue-primary font-body text-20px hover:text-blue-hover focus:text-blue-hover"
id="eiAccessCodeLink"
Expand Down