forked from NASA-IMPACT/veda-config
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
_The PR name should be the version to be deployed (ex: v1.0.1)_ - [x] Bump the version in the package.json or equivalent. --- - # Changelog - ## 🎉 Features - 🦗 - ## 🚀 Improvements - #695 - #726 - ## 📊 Dataset Updates - 🦗 - ## 📝 Stories Updates - 🦗 - ## 🐛 Fixes - 🦗
- Loading branch information
Showing
5 changed files
with
55 additions
and
19 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
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 |
---|---|---|
@@ -0,0 +1,36 @@ | ||
/* Base style for the link */ | ||
.link { | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
color: rgb(18, 41, 97); | ||
border: 1px solid rgb(18, 41, 97); | ||
padding: 0px 20px; | ||
border-radius: 5px; | ||
text-transform: uppercase; | ||
font-size: 16px; | ||
font-weight: 500; | ||
font-family: 'Inter', sans-serif; | ||
height: 3rem; | ||
background-color: transparent; | ||
transition: background-color 0.24s ease-in-out; | ||
opacity: 1; | ||
text-decoration: none; | ||
|
||
/* Hover effect */ | ||
&:hover { | ||
background-color: rgba(8, 42, 100, 0.08); | ||
} | ||
|
||
/* Active effect */ | ||
&:active, | ||
&.active { | ||
background-color: rgba(8, 42, 100, 0.08); | ||
} | ||
} | ||
|
||
/* Optional styles for the arrow */ | ||
.arrow { | ||
display: flex; | ||
margin: 0px 4px; | ||
} |
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