Skip to content

Commit 845bd75

Browse files
committed
- Breadcrumbs icon and weight changes
- Button min-width added - checkbox and radio icon color changes
1 parent 02573bc commit 845bd75

File tree

5 files changed

+13
-4
lines changed

5 files changed

+13
-4
lines changed

packages/ui/src/components/Breadcrumbs/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { Children } from 'react';
2-
import { ChevronRightLineIcon } from '@ifrc-go/icons';
2+
import { ArrowDropRightLineIcon } from '@ifrc-go/icons';
33
import { _cs } from '@togglecorp/fujs';
44

55
import styles from './styles.module.css';
@@ -15,7 +15,7 @@ function Breadcrumbs(props: BreadcrumbsProps) {
1515
const {
1616
className,
1717
children,
18-
separator = <ChevronRightLineIcon />,
18+
separator = <ArrowDropRightLineIcon />,
1919
itemClassName,
2020
} = props;
2121

packages/ui/src/components/Breadcrumbs/styles.module.css

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
&:not(:last-child) {
1010
color: var(--go-ui-color-gray-70);
11+
font-weight: var(--go-ui-font-weight-light);
1112
}
1213

1314
&:last-child {
@@ -18,7 +19,8 @@
1819
.separator {
1920
display: flex;
2021
justify-content: center;
21-
color: var(--go-ui-color-gray-70);
22-
font-size: var(--go-ui-font-size-xl);
22+
color: var(--go-ui-color-gray-90);
23+
font-size: var(--go-ui-font-size-3xl);
24+
font-weight: var(--go-ui-font-weight-medium);
2325
}
2426
}

packages/ui/src/components/Button/styles.module.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
cursor: var(--cursor);
1818
padding: var(--padding);
1919
width: fit-content;
20+
min-width: calc(var(--base-spacing) * 6.5);
2021
max-width: 100%;
2122
overflow: hidden;
2223
text-transform: var(--text-transform);

packages/ui/src/components/Checkbox/styles.module.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@
2222
outline: var(--go-ui-width-separator-thin) dashed var(--go-ui-color-gray-40);
2323
}
2424
}
25+
26+
.checkmark {
27+
color: var(--go-ui-color-gray-40);
28+
}
2529
}
2630

2731
.content {

packages/ui/src/components/RadioInput/Radio/styles.module.css

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,15 @@
44

55
.icon {
66
transition: var(--go-ui-duration-transition-medium) color ease-in-out;
7+
color: var(--go-ui-color-gray-40);
78
font-size: var(--go-ui-height-icon-multiplier);
89
}
910

1011
.content {
1112
flex-direction: column;
1213
gap: 0;
1314
line-height: var(--go-ui-line-height-sm);
15+
color: var(--go-ui-color-black);
1416
}
1517

1618
.description {

0 commit comments

Comments
 (0)