Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions lib/components/InlineWorkPackage/InlineWorkPackageChip.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ const InlineChip = styled.span.attrs({
box-shadow: ${({ selected }) => (selected ? CHIP_STYLES.focusShadow : "none")};
position: relative;
max-width: 100%;
line-height: 1;
`;

export const InlineWorkPackageChip = ({ inlineContent, contentRef }: InlineWorkPackageChipProps) => {
Expand Down
1 change: 1 addition & 0 deletions lib/components/Search/SearchContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ export const SearchContainer = styled.div.attrs({
background-color: var(--bn-colors-menu-background, #fff);
box-shadow: var(--bn-shadow-medium);
border-radius: var(--bn-border-radius-large);
line-height: 1.5;

@media (min-width: 1120px) {
width: ${({ $floating }) => ($floating ? "400px" : "500px")};
Expand Down
1 change: 0 additions & 1 deletion lib/components/WorkPackage/atoms.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@ export const WorkPackageStatus = styled.div.attrs({
font-weight: 600;
color: var(--bn-colors-editor-text) !important;
flex-shrink: 0;
line-height: 1.4;
display: inline-flex;
align-items: center;
gap: 4px;
Expand Down
4 changes: 2 additions & 2 deletions lib/components/WorkPackage/tokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ export const CHIP_STYLES = {
gap: "6px",
padding: {
xxs: "2.5px 6px",
xs: "1px 6px",
s: "1px 6px",
xs: "1.5px 6px",
s: "1.5px 6px",
},

fontSize: "12px",
Expand Down
Loading