diff --git a/webapp/src/components/NameManagerDialog/NamedRangeActive.tsx b/webapp/src/components/NameManagerDialog/NamedRangeActive.tsx
index 4ee9a53..0f7a98f 100644
--- a/webapp/src/components/NameManagerDialog/NamedRangeActive.tsx
+++ b/webapp/src/components/NameManagerDialog/NamedRangeActive.tsx
@@ -10,6 +10,7 @@ import {
import { t } from "i18next";
import { Check, X } from "lucide-react";
import { useState } from "react";
+import { theme } from "../../theme";
interface NamedRangeProperties {
worksheets: WorksheetProperties[];
@@ -59,13 +60,12 @@ function NamedRangeActive(properties: NamedRangeProperties) {
}}
>
{worksheets.map((option) => (
))}
@@ -104,6 +104,18 @@ function NamedRangeActive(properties: NamedRangeProperties) {
);
}
+const MenuSpan = styled("span")`
+ font-size: 12px;
+ font-family: "Inter";
+`;
+
+const MenuSpanGrey = styled("span")`
+ white-space: pre;
+ font-size: 12px;
+ font-family: "Inter";
+ color: ${theme.palette.grey[400]};
+`;
+
const StyledBox = styled(Box)`
display: flex;
gap: 12px;