Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove refrences to RÅ #240

Merged
merged 3 commits into from
Nov 1, 2023
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
12 changes: 0 additions & 12 deletions frontend/src/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -111,18 +111,6 @@
line-height: 0.875rem;
}

.raa-text {
font-size: 3rem;
font-family: "Graphik-SemiBold";
line-height: 4rem;
}

.raa-text-big {
font-size: 5rem;
font-family: "Graphik-SemiBold";
line-height: 6rem;
}

.layout-grid {
display: grid;
grid-template-columns: auto 1fr;
Expand Down
12 changes: 4 additions & 8 deletions frontend/src/components/ConsultantListElement.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,17 +47,13 @@ export default function ConsultantListElement({
{consultant.name}
</p>
<p className="detail text-neutral_l1 text-start">
{`${consultant.yearsOfExperience} RÅ år`}
{`${consultant.yearsOfExperience} års erfaring`}
</p>
</div>
</div>
<div className={`${!isListElementVisible && "hidden"} h-[198px] `}>
<p className="raa-text sm:raa-text-big py-5 sm:py-10 ml-10 px-[2px] ">
<span className={`text-[#FF6426]`}>Du</span>{" "}
<span className={`text-[#028377]`}>er</span>{" "}
<span className={`text-[#534DAC]`}>RÅ!</span>
</p>
</div>
<div
className={`${!isListElementVisible && "hidden"} h-[198px] `}
></div>
</div>
</div>
);
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/ExperienceFilter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export default function ExperienceFilter() {
return (
<div>
<div className="flex flex-col gap-2">
<p className="body-small">RÅ-år</p>
<p className="body-small">Erfaring</p>
<div className="flex flex-col gap-2 w-52">
{yearRanges?.map((range, index) => (
<FilterButton
Expand Down
Loading