Skip to content

Commit 8186c2d

Browse files
committed
more... plus logo
1 parent aaae086 commit 8186c2d

25 files changed

+47
-35
lines changed

src/assets/netbird-full-light.svg

Lines changed: 6 additions & 0 deletions
Loading

src/components/AutoCompleteInput.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export const AutoCompleteInput = ({}: Props) => {
4343
<div className={"flex items-center gap-2"}>
4444
<Checkbox></Checkbox>
4545
<div
46-
className={"flex gap-2 items-center text-sm text-gray-500 dark:text-nb-gray-200"}
46+
className={"flex gap-2 items-center text-sm text-nb-gray-200"}
4747
>
4848
<FaWindows className={"text-sky-600 text-lg"} />
4949
Windows

src/components/Breadcrumbs.tsx

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,12 @@ export const Item = ({
3636
>
3737
<ChevronRightIcon
3838
size={16}
39-
className={"text-gray-400 dark:text-nb-gray-400 group-first:hidden"}
39+
className={"text-nb-gray-400 group-first:hidden"}
4040
/>
4141
<div
4242
className={cn(
43-
"flex items-center gap-2.5 text-gray-500 dark:text-nb-gray-400 transition-all",
44-
!active && "cursor-pointer",
45-
active ? "text-gray-700 dark:text-nb-gray-300" : "hover:text-gray-700 dark:hover:text-nb-gray-300",
43+
"flex items-center gap-2.5 text-nb-gray-400 transition-all cursor-pointer",
44+
active ? "text-nb-gray-300" : "hover:text-nb-gray-300",
4645
)}
4746
>
4847
{icon && icon}

src/components/DatePickerWithRange.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,8 +174,8 @@ function CalendarButton({ label, onClick, active }: CalendarButtonProps) {
174174
className={cn(
175175
"py-1.5 leading-none px-2.5 rounded-md text-center text-xs transition-all flex gap-2",
176176
active
177-
? "bg-gray-700 text-white dark:bg-nb-gray-800 dark:text-white"
178-
: "bg-transparent text-gray-500 dark:text-nb-gray-300 hover:bg-gray-100 dark:hover:bg-nb-gray-900 hover:text-gray-700 dark:hover:text-nb-gray-100",
177+
? "bg-nb-gray-800 text-white"
178+
: "bg-transparent text-nb-gray-300 hover:bg-nb-gray-900 hover:text-nb-gray-100",
179179
)}
180180
onClick={onClick}
181181
>

src/components/InlineLink.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const linkVariants = cva("", {
1515
variants: {
1616
variant: {
1717
default: "text-netbird hover:underline font-normal",
18-
faded: "text-gray-500 dark:text-nb-gray-400 hover:text-gray-700 dark:hover:text-nb-gray-300 hover:underline",
18+
faded: "text-nb-gray-400 hover:text-nb-gray-300 hover:underline",
1919
},
2020
},
2121
});

src/components/Notification.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ export default function Notification<T>({
8383
<div className={"flex items-center gap-4"}>
8484
<div
8585
className={classNames(
86-
"h-8 w-8 shadow-sm text-white dark:text-white flex items-center justify-center rounded-md shrink-0",
86+
"h-8 w-8 shadow-sm text-white flex items-center justify-center rounded-md shrink-0",
8787
loading
8888
? "bg-nb-gray-900"
8989
: error
@@ -104,7 +104,7 @@ export default function Notification<T>({
104104
<span className={"font-semibold"}>{title}</span>
105105
</p>
106106
<p
107-
className={"text-xs dark:text-nb-gray-300 text-gray-500 mt-0.5"}
107+
className={"text-xs dark:text-nb-gray-300 text-gray-600 mt-0.5"}
108108
>
109109
{loading ? loadingMessage : error ? error : description}
110110
</p>
@@ -117,7 +117,7 @@ export default function Notification<T>({
117117
>
118118
<div
119119
className={
120-
"p-2 hover:bg-gray-100 dark:hover:bg-nb-gray-900 rounded-md opacity-50 group-hover:opacity-100"
120+
"p-2 hover:bg-nb-gray-900 rounded-md opacity-50 group-hover:opacity-100"
121121
}
122122
>
123123
<XIcon size={16} />

src/components/Steps.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ const Step = ({
5656
className={cn(
5757
"h-[34px] w-[34px] shrink-0 rounded-full flex items-center justify-center font-medium text-xs relative z-0 border-4 transition-all",
5858
"dark:bg-nb-gray-900 dark:text-nb-gray-400 dark:border-nb-gray dark:group-hover:bg-nb-gray-800",
59-
"bg-gray-100 text-gray-500 dark:text-nb-gray-400 border-white group-hover:bg-gray-200 step-circle",
59+
"bg-nb-gray-100 text-nb-gray-400 border-white group-hover:bg-nb-gray-200 step-circle",
6060
)}
6161
>
6262
{step}

src/components/table/DataTableRefreshButton.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ export default function DataTableRefreshButton({ onClick, isDisabled }: Props) {
6161
if (hovered) event.preventDefault();
6262
}}
6363
>
64-
<span className={"text-xs text-gray-500 dark:text-neutral-300"}>
64+
<span className={"text-xs text-neutral-300"}>
6565
{disabled ? "You can refresh it again in 5 seconds" : "Refresh"}
6666
</span>
6767
</TooltipContent>

src/components/table/Table.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ const TableRow = React.forwardRef<
105105
"data-[state=selected]:border-gray-200 dark:data-[state=selected]:border-nb-gray-900",
106106
minimal
107107
? "hover:bg-gray-50 dark:hover:bg-nb-gray-900/10"
108-
: "border-b dark:border-zinc-700/40 border-gray-200 dark:hover:bg-nb-gray-940 hover:bg-gray-50",
108+
: "border-b dark:border-zinc-700/40 border-gray-200 dark:hover:bg-nb-gray-940 hover:bg-gray-100",
109109
className,
110110
)}
111111
{...props}

src/components/ui/DomainListBadge.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ export const DomainsTooltip = ({
5050
>
5151
<div
5252
className={
53-
"flex gap-2 items-center text-gray-500 dark:text-nb-gray-300 text-xs"
53+
"flex gap-2 items-center text-nb-gray-300 text-xs"
5454
}
5555
>
5656
<GlobeIcon size={11} />

0 commit comments

Comments
 (0)