-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# Changelog ## π Features π¦ ## π Improvements - Add data source citation in Air-Sea COβ Flux, ECCO-Darwin Model v5 dataset overview - Update cover image in U.S. Gridded Anthropogenic Greenhouse Gas Emissions data insight - Update website meta image to a clearer version ## π Fixes - Fix user notebook URL for OCO-2 MIP Top-down COβ Budgets dataset - Fix broken external link to gas flaring photo
- Loading branch information
Showing
5 changed files
with
38 additions
and
17 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,30 @@ | ||
import { NavLink } from "$veda-ui/react-router-dom"; | ||
import styled, { css } from "$veda-ui/styled-components"; | ||
|
||
const MouseEventStyle = css` | ||
&:hover { | ||
cursor: pointer; | ||
} | ||
&:focus { | ||
outline: 3px solid #1565EF; | ||
} | ||
&:active { | ||
color: black; | ||
} | ||
` | ||
|
||
export const AccessibilityLink = styled(NavLink)` | ||
text-decoration: underline; | ||
${MouseEventStyle} | ||
`; | ||
|
||
export const AccessibilityMenuItem = styled(NavLink)` | ||
text-decoration: none; | ||
${MouseEventStyle} | ||
&:hover { | ||
text-decoration: underline; | ||
} | ||
&:active { | ||
text-decoration: underline; | ||
} | ||
`; |
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 |
---|---|---|
|
@@ -56,7 +56,7 @@ module.exports = { | |
button: { | ||
type: { | ||
case: "uppercase", | ||
weight: 400, | ||
weight: 500, | ||
}, | ||
}, | ||
}, | ||
|