Skip to content

Commit

Permalink
109 num consultants (#115)
Browse files Browse the repository at this point in the history
* Update to correct black color

* Add num consultants
  • Loading branch information
mathildehaugum authored Oct 10, 2023
1 parent fc51b48 commit 5529a94
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion frontend/src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,13 @@ export default function Bemanning() {
<div>
<h1>Konsulenter</h1>

<p className="body-large-bold pt-16 pb-4">Konsulentliste</p>
<div className="flex flex-row gap-3 pt-16 pb-4 items-center">
<p className="body-large-bold ">Konsulentliste</p>

<div className="rounded-full bg-black bg-opacity-5 px-2 py-1">
<p className="text-black body-small">{data.length}</p>
</div>
</div>
{data.map((variant) => (
<VariantListElement key={variant.id} variant={variant} />
))}
Expand Down
2 changes: 1 addition & 1 deletion frontend/tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
colors: {
black: "#000000",
black: "#333333",
white: "#FFFFFF",
primary_default: "#423D89",
primary_l3: "#ECECF3",
Expand Down

0 comments on commit 5529a94

Please sign in to comment.