Skip to content

Commit

Permalink
More styling fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Marjona6 committed Apr 20, 2024
1 parent bdaf943 commit 582759a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions pages/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ body {
.vp-local-header {
background-color: #42938d !important;
height: 100px !important;
width: 100vw !important;
align-items: center !important;
}

Expand Down
2 changes: 1 addition & 1 deletion pages/search/components/Filters/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const Filters = ({
}

return (
<div className="flex flex-wrap w-screen justify-center gap-2 items-center h-fit">
<div className="flex flex-wrap w-full justify-center gap-2 items-center h-fit">
<Select
multi
placeholder="Language"
Expand Down
2 changes: 1 addition & 1 deletion pages/search/components/ResultsBar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const ResultsBar = ({ numberOfResults = 0 }) => {
const numberToShow = numberOfResults || 'No'
const wordToShow = numberOfResults === 1 ? RESULT_TEXT : RESULTS_TEXT
return (
<div className="flex w-screen ml-[-40px] pl-10 items-center bg-purple opacity-[60%] h-12 text-white">
<div className="flex w-screen ml-[-24px] md:ml-[-40px] pl-6 md:pl-10 items-center bg-purple opacity-[60%] h-12 text-white">
{numberToShow} {wordToShow}
</div>
)
Expand Down

0 comments on commit 582759a

Please sign in to comment.