Copied!}
+ visible={visible}
+ onClickOutside={() => setVisible(false)}
+ arrow={true}
+ theme="custom"
+ >
+
+
+ setVisible(true)}
+ />
+
+
+
>
);
}
diff --git a/src/app/styles/globals.css b/src/app/styles/globals.css
index 57dac249..4d213d45 100644
--- a/src/app/styles/globals.css
+++ b/src/app/styles/globals.css
@@ -122,9 +122,9 @@ input[type="number"]::-ms-clear {
/**
* GRID AREA CSS: Utilizes global CSS classes for grid areas.
- * Justification: TailwindCSS lacks a readable method for implementing
- * grid-template-areas. Therefore, all grid area-related styles are
- * centralized in global CSS to maintain separation from
+ * Justification: TailwindCSS lacks a readable method for implementing
+ * grid-template-areas. Therefore, all grid area-related styles are
+ * centralized in global CSS to maintain separation from
* component-specific styles.
*/
.grid-container {
@@ -239,3 +239,8 @@ input[type="number"]::-ms-clear {
.account-history table thead tr th:last-child {
padding-right: 16px;
}
+
+/* css for tooltip */
+.tippy-box[data-theme~="custom"] {
+ @apply text-dexter-green bg-base-100;
+}