diff --git a/app/src/components/Navbar/styles.module.css b/app/src/components/Navbar/styles.module.css
index 782d890c5d..4736f0b8c2 100644
--- a/app/src/components/Navbar/styles.module.css
+++ b/app/src/components/Navbar/styles.module.css
@@ -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);
diff --git a/app/src/components/domain/KeywordSearchSelectInput/index.tsx b/app/src/components/domain/KeywordSearchSelectInput/index.tsx
index 6e9e2a5894..d89a2097bd 100644
--- a/app/src/components/domain/KeywordSearchSelectInput/index.tsx
+++ b/app/src/components/domain/KeywordSearchSelectInput/index.tsx
@@ -315,6 +315,8 @@ function KeywordSearchSelectInput() {
icons={}
selectedOnTop={false}
onEnterWithoutOption={handleSearchInputEnter}
+ variant="general"
+ withoutDropdownIcon
/>
);
}
diff --git a/packages/ui/src/components/Heading/styles.module.css b/packages/ui/src/components/Heading/styles.module.css
index 1208f50602..659d7399c6 100644
--- a/packages/ui/src/components/Heading/styles.module.css
+++ b/packages/ui/src/components/Heading/styles.module.css
@@ -22,6 +22,7 @@
&.level-one {
--font-size: 2.5rem;
+ letter-spacing: .1rem;
@media print {
color: var(--go-ui-color-primary-blue);
diff --git a/packages/ui/src/components/SelectInputContainer/index.tsx b/packages/ui/src/components/SelectInputContainer/index.tsx
index 052f740ea2..718f547ca5 100644
--- a/packages/ui/src/components/SelectInputContainer/index.tsx
+++ b/packages/ui/src/components/SelectInputContainer/index.tsx
@@ -70,6 +70,7 @@ interface SelectInputContainerProps<
onSelectAllButtonClick?: () => void;
onEnterWithoutOption?: () => void;
dropdownHidden?: boolean;
+ withoutDropdownIcon?: boolean;
}
export type Props<
@@ -132,6 +133,7 @@ function SelectInputContainer<
autoFocus,
onEnterWithoutOption,
dropdownHidden,
+ withoutDropdownIcon,
} = selectInputContainerProps;
const options = optionsFromProps ?? (emptyList as OPTION[]);
@@ -272,7 +274,7 @@ function SelectInputContainer<
)}
- {!readOnly && (
+ {!readOnly && !withoutDropdownIcon && (