diff --git a/client/src/pages/openalex-affiliations/search.jsx b/client/src/pages/openalex-affiliations/search.jsx
index 1453cc7..be32a2c 100644
--- a/client/src/pages/openalex-affiliations/search.jsx
+++ b/client/src/pages/openalex-affiliations/search.jsx
@@ -254,7 +254,7 @@ export default function Search() {
}
return (
- <>
+
setIsOpen(false)} size="xl">
@@ -268,12 +268,14 @@ export default function Search() {
buttonLabel={currentSearchParams.startYear}
label="Start year"
onSelectionChange={(startYear) => setSearchParams({ ...currentSearchParams, startYear })}
- selectedKey={currentSearchParams.startYear}
>
{years.map((year) => (
{year.label}
@@ -286,12 +288,14 @@ export default function Search() {
buttonLabel={currentSearchParams.endYear}
label="End year"
onSelectionChange={(endYear) => setSearchParams({ ...currentSearchParams, endYear })}
- selectedKey={currentSearchParams.endYear}
>
{years.map((year) => (
{year.label}
@@ -339,7 +343,7 @@ export default function Search() {
-
+
Home
@@ -348,8 +352,10 @@ export default function Search() {
Search raw affiliations and ROR in OpenAlex
+
+
-
+
-
+
-
+
{
- setExcludedRors(e.target.value);
- }}
+ messageType=""
+ onChange={(e) => { setExcludedRors(e.target.value); }}
value={excludedRors}
/>
-
+
+
+
- >
+
);
}
diff --git a/client/src/styles/index.scss b/client/src/styles/index.scss
index 3fb2107..88e8633 100644
--- a/client/src/styles/index.scss
+++ b/client/src/styles/index.scss
@@ -43,8 +43,9 @@ body {
.filters {
background-color: white;
- border-bottom: 2px solid #000;
- box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
+ border: 1px solid #aaa;
+ border-left: 8px solid #c7eeea;
+ box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
.mentions .actions-menu {
@@ -105,7 +106,7 @@ body {
.box-info {
background-color: #eee;
border: 1px solid #000;
- box-shadow: 5px 5px 15px 0px rgba(50, 50, 50, 0.3);
+ box-shadow: 5px 5px 15px 0px rgba(50, 50, 50, 0.1);
margin: 10px 0;
padding: 10px;
}
@@ -122,8 +123,7 @@ body {
background-color: #eee;
padding: 15px;
border: 1px solid #000;
- border-radius: 15px;
- box-shadow: 5px 5px 15px 0px rgba(50, 50, 50, 0.3);
+ box-shadow: 5px 5px 15px 0px rgba(50, 50, 50, 0.1);
}
.wm-fit-content {