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

fix: link updates #390

Merged
merged 4 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
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@
@media (max-width: $screen-lg) {
flex-direction: column;
}
a {
text-decoration: underline;
color: var(--bloom-color-primary-lighter);

&:hover {
color: var(--bloom-color-primary-light);
}
}
}

.doorway-linkable-card-group_nav {
Expand All @@ -15,7 +23,3 @@
padding: var(--doorway-standard-spacing);
}
}

ColinBuyck marked this conversation as resolved.
Show resolved Hide resolved
.doorway-linkable-card-group-main {
flex: 1;
}
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const DoorwayLinkableCardGroup = (props: DoorwayLinkableCardGroupProps) => {
<div className="doorway-linkable-card-group_nav font-serif mt-4">
<Card className="border-0 space-y-5">{getLinks()}</Card>
</div>
<div className="doorway-linkable-card-group_main">
<div>
{props.children}
{props.cards}
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ export function LandingSearch(props: LandingSearchProps) {
let check = false
const dahliaNote = `(${t(
"filter.goToDahlia"
)} <a href="https://housing.sfgov.org/" target="_blank">DAHLIA</a>)`
)} <a class="lined" href="https://housing.sfgov.org/" target="_blank">DAHLIA</a>)`

counties.forEach((county, idx) => {
// FieldGroup uses the label attribute to check for selected inputs.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ export function ListingsSearchModal(props: ListingsSearchModalProps) {
let check = false
const dahliaNote = `(${t(
"filter.goToDahlia"
)} <a href="https://housing.sfgov.org/" target="_blank">DAHLIA</a>)`
)} <a class="lined" href="https://housing.sfgov.org/" target="_blank">DAHLIA</a>)`
counties.forEach((county, idx) => {
// FieldGroup uses the label attribute to check for selected inputs.
check = selected[county.label] !== undefined
Expand Down
1 change: 1 addition & 0 deletions sites/public/src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ export default function Home(props: IndexProps) {
{t("welcome.useDoorwayBAHFAtext")}
<br />
<a
className="lined"
href="https://mtc.ca.gov/about-mtc/authorities/bay-area-housing-finance-authority-bahfa"
target="_blank"
>
Expand Down
Loading