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

Hendelselogg for Beslutter #1186

Closed
wants to merge 1 commit into from
Closed
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
8 changes: 8 additions & 0 deletions src/BeslutterSide/BeslutterSide.less
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,14 @@
max-width: @container-desktop;
}

&__head-meny-wrapper {
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
margin-bottom: 1rem;
}

&__avtale-wrapper, &__avtale-versjon-wrapper {
box-shadow: 0 4px 6px -1px rgb(0 0 0 / 10%), 0 2px 4px -1px rgb(0 0 0 / 6%);
}
Expand Down
6 changes: 5 additions & 1 deletion src/BeslutterSide/BeslutterSide.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ import OppsummeringMentor from '@/AvtaleSide/steg/GodkjenningSteg/Oppsummering/O
import OppsummeringInkluderingstilskudd from '@/AvtaleSide/steg/GodkjenningSteg/Oppsummering/OppsummeringInkluderingstilskudd/OppsummeringInkluderingstilskudd';
import VersjoneringKomponent from '@/AvtaleSide/steg/GodkjenningSteg/Versjonering/VersjoneringKomponent';
import { InnloggetBrukerContext } from '@/InnloggingBoundary/InnloggingBoundary';
import Varsellogg from '@/AvtaleSide/Varsellogg/Varsellogg';

const cls = BEMHelper('beslutter-side');

Expand Down Expand Up @@ -76,7 +77,10 @@ const BeslutterSide: FunctionComponent = () => {
<VerticalSpacer rem={2} />
<div className={cls.element('innhold')}>
<div className={cls.element('head-wrapper')}>
<TilbakeTilOversiktLenke />
<div className={cls.element('head-meny-wrapper')}>
<TilbakeTilOversiktLenke />
<Varsellogg />
</div>
<Heading size="large" className={cls.element('hoved-tittel')}>
Tilskudd om {tiltakstypeTekst[avtale.tiltakstype]}
</Heading>
Expand Down