Skip to content
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
4 changes: 4 additions & 0 deletions lego-webapp/components/HsSection/HsSection.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,10 @@
color: var(--danger-color);
}

.accentMoneyRequest svg {
color: var(--color-orange-6);
}

/* New styles for title/subtext layout */
.textWrapper {
display: flex;
Expand Down
16 changes: 15 additions & 1 deletion lego-webapp/components/HsSection/HsSection.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Icon, Flex } from '@webkom/lego-bricks';
import { BookOpenText, FileText, MailWarning } from 'lucide-react';
import { BookOpenText, FileText, MailWarning, PiggyBank } from 'lucide-react';
import styles from './HsSection.module.css';

const HsSectionContent = () => {
Expand Down Expand Up @@ -49,6 +49,20 @@ const HsSectionContent = () => {
</span>
</div>
</a>
<a
href="https://drive.google.com/drive/folders/1ioLyk3MFFeNaZWNItYEGhdumytFdShmL?usp=sharing"
target="_blank"
rel="noreferrer"
className={`${styles.item} ${styles.accentMoneyRequest} ${styles.fullWidthButton}`}
>
<Icon iconNode={<PiggyBank size={18} />} />
<div className={styles.textWrapper}>
<h4 className={styles.title}>Pengesøknader</h4>
<span className={`secondaryFontColor ${styles.subtext}`}>
Se pengesøknader sendt inn til HS
</span>
</div>
</a>
</Flex>
</div>
);
Expand Down