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
2 changes: 1 addition & 1 deletion app/src/components/Navbar/styles.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
background-color: var(--go-ui-color-foreground);

.top {
border-bottom: var(--go-ui-width-separator-thin) solid var(--go-ui-color-primary-red);
border-bottom: var(--go-ui-width-separator-md) solid var(--go-ui-color-primary-red);

.top-content {
padding: var(--go-ui-spacing-sm) var(--go-ui-spacing-lg);
Expand Down
2 changes: 2 additions & 0 deletions app/src/components/domain/KeywordSearchSelectInput/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -315,6 +315,8 @@ function KeywordSearchSelectInput() {
icons={<SearchLineIcon />}
selectedOnTop={false}
onEnterWithoutOption={handleSearchInputEnter}
variant="general"
withoutDropdownIcon
/>
);
}
Expand Down
1 change: 1 addition & 0 deletions packages/ui/src/components/Heading/styles.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@

&.level-one {
--font-size: 2.5rem;
letter-spacing: .1rem;

@media print {
color: var(--go-ui-color-primary-blue);
Expand Down
4 changes: 3 additions & 1 deletion packages/ui/src/components/SelectInputContainer/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ interface SelectInputContainerProps<
onSelectAllButtonClick?: () => void;
onEnterWithoutOption?: () => void;
dropdownHidden?: boolean;
withoutDropdownIcon?: boolean;
}

export type Props<
Expand Down Expand Up @@ -132,6 +133,7 @@ function SelectInputContainer<
autoFocus,
onEnterWithoutOption,
dropdownHidden,
withoutDropdownIcon,
} = selectInputContainerProps;

const options = optionsFromProps ?? (emptyList as OPTION[]);
Expand Down Expand Up @@ -272,7 +274,7 @@ function SelectInputContainer<
<CloseLineIcon className={styles.icon} />
</Button>
)}
{!readOnly && (
{!readOnly && !withoutDropdownIcon && (
<Button
onClick={handleToggleDropdown}
colorVariant="text"
Expand Down
Loading