-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #473 from tanyas-codes/feature/tooltip
added a tooltip for fingertip duration for off-chain groups
- Loading branch information
Showing
2 changed files
with
55 additions
and
3 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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import { defineStyleConfig } from "@chakra-ui/react" | ||
import colors from "../colors" | ||
|
||
const baseStyle = { | ||
borderRadius: "md", | ||
fontWeight: "normal", | ||
border: "1px solid", | ||
backgroundColor: colors.classicRose[50], | ||
color: colors.sunsetOrange[500], | ||
boxShadow: `0px 2px 4px ${colors.classicRose[300]}` | ||
} | ||
|
||
export const tooltipTheme = defineStyleConfig({ baseStyle }) |