diff --git a/src/components/Search.jsx b/src/components/Search.jsx
index 87c2aa2..fa720aa 100644
--- a/src/components/Search.jsx
+++ b/src/components/Search.jsx
@@ -88,7 +88,6 @@ export class Search extends React.Component {
artists = (
-
);
}
@@ -97,8 +96,8 @@ export class Search extends React.Component {
Busqueda
- {paginate && paginate}
{artists ? artists : Loading...
}
+ {paginate && paginate}
);
}
diff --git a/src/styles/main.css b/src/styles/main.css
index e3efac0..e188b61 100644
--- a/src/styles/main.css
+++ b/src/styles/main.css
@@ -1,8 +1,9 @@
:root {
+ --light-gray: hsl(0, 0%, 95%);
--gray: hsl(0, 0%, 85%);
--dark-gray: hsl(0, 0%, 30%);
--black: hsl(0, 0%, 20%);
- --emerald: hsl(138, 70%, 50%);
+ --emerald: hsl(138, 70%, 60%);
}
body {
@@ -59,8 +60,11 @@ ul.pagination {
padding: 0 1em;
}
+.page-item.active {
+ background-color: var(--emerald);
+}
.page-item.active a {
- color: var(--emerald);
+ color: white;
}
.full-width {
@@ -96,6 +100,10 @@ li.entity:not(:first-child) {
border-top: none;
}
+li.entity:hover {
+ background-color: var(--light-gray)
+}
+
li.entity a {
display: flex;