Compare commits

...
This repository has been archived on 2024-12-07. You can view files and clone it, but cannot push or open issues or pull requests.

1 commit

Author SHA1 Message Date
Markus Johansen
813513a616 🚧 La til knapp på notat for redigering 2023-08-03 12:11:31 +02:00

View file

@ -118,7 +118,10 @@ const Kommentar = (props: kommentarInterface) => {
<> <>
<Skillelinje/> <Skillelinje/>
<div className="p-5 bg-bg-subtle rounded-lg w-2/3 my-4"> <div className="p-5 bg-bg-subtle rounded-lg w-2/3 my-4">
<Heading size="medium">Notat</Heading> <div className="flex justify-between items-center">
<Heading size="medium">Notat</Heading>
<Button variant="tertiary" icon={<PencilIcon/>}></Button>
</div>
<p className="break-words">{props.tekst}</p> <p className="break-words">{props.tekst}</p>
</div> </div>
</> </>