-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
69 additions
and
10 deletions.
There are no files selected for viewing
This file contains 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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import { Box, Text, Link as DSLink } from "@nypl/design-system-react-components" | ||
import React from "react" | ||
|
||
import styles from "../../styles/components/Search.module.scss" | ||
|
||
/** | ||
* Renders a simple link to log out the user out from the Catalog. | ||
*/ | ||
const EDSLink = () => { | ||
return ( | ||
<Box className={styles.edsLink} mt="0" mb="0"> | ||
<Text size="body2" className="eds-link"> | ||
<span style={{ color: "var(--nypl-colors-ui-success-primary)" }}> | ||
New! | ||
</span>{" "} | ||
Try our{" "} | ||
<DSLink href="https://research.ebsco.com/c/2styhb" target="_blank"> | ||
<strong>Article Search</strong> | ||
</DSLink>{" "} | ||
to discover online journals, books, and more from home with your library | ||
card. | ||
</Text> | ||
</Box> | ||
) | ||
} | ||
|
||
export default EDSLink |
This file contains 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 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 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 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 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 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 |
---|---|---|
|
@@ -18,6 +18,10 @@ | |
} | ||
} | ||
} | ||
@media screen and (max-width: 400px) { | ||
display: flex; | ||
flex-direction: column; | ||
} | ||
} | ||
|
||
a { | ||
|