File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -3,12 +3,9 @@ import React, { CSSProperties } from "react"
33import { CloseButtonProps , toast } from "react-toastify"
44import type { ToastOptions } from "react-toastify"
55
6- import { N0 } from "@atlaskit/theme/colors"
7-
8- import "react-toastify/dist/ReactToastify.css"
6+ //import "react-toastify/dist/ReactToastify.css" -> needs to be imported in your app, probably before tailwindcss to make overrides work
97import CrossIcon from "@atlaskit/icon/glyph/cross"
108
11- import { token } from "@atlaskit/tokens"
129import { Flag , FlagActionType , FlagProps } from "./Flag"
1310import {
1411 getAppearanceColors ,
@@ -48,7 +45,7 @@ export function showFlagExtended({
4845 invert = false ,
4946 ...props
5047} : ToastFlagProps ) {
51- const { secondaryColor, primaryColor , textColor } = getAppearanceColors (
48+ const { secondaryColor, textColor } = getAppearanceColors (
5249 invert ,
5350 appearance ,
5451 )
Original file line number Diff line number Diff line change 1+ @import "react-toastify/dist/ReactToastify.css" ;
2+
13@tailwind base;
24@tailwind components;
35@tailwind utilities;
You can’t perform that action at this time.
0 commit comments