-
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.
help: Created Help message component to quickly show a help article l…
…ink when necessary for quick updates. Could help with issue #65
- Loading branch information
1 parent
a56a2a6
commit 5a0a43c
Showing
2 changed files
with
29 additions
and
9 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,20 @@ | ||
@import '../../assets/styles/colors'; | ||
.HelpMessage { | ||
border-radius: 0.5rem; | ||
} | ||
hr { | ||
margin: 1.5rem 0; | ||
border-color: $primary-bright; | ||
} | ||
.HelpMessageBox { | ||
border-radius: 0.5rem; | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
gap: 0.5rem; | ||
svg { | ||
fill: $primary; | ||
} | ||
p { | ||
color: $gray; | ||
} | ||
} | ||
} |