new-modal #4

Merged
jare2473 merged 18 commits from new-modal into main 2025-09-10 10:01:30 +02:00
4 changed files with 54 additions and 3 deletions
Showing only changes of commit b2496506fd - Show all commits

4
my-app/.gitignore vendored
View File

@@ -25,3 +25,7 @@ dist-ssr
*storybook.log
storybook-static
# Font files
public/caecilia/
public/the-sans/

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 48 KiB

View File

@@ -70,7 +70,7 @@ const Navigation = () => {
<div className={styles.top}>
<div className={styles.left}>
<Link to="/" className={styles.logo}>
<img src="su-logo-darkblue.svg" alt="Logo" />
<img src="su-logo-white.svg" alt="Logo" />
</Link>
<span className={styles.brandText}>Studentportalen</span>
</div>

View File

@@ -6,6 +6,8 @@
display: flex;
flex-direction: column;
background-color: var(--bg-secondary);
background-color: var(--su-blue);
color: white;
box-shadow: var(--shadow-md);
position: fixed;
top: 0;
@@ -27,7 +29,6 @@
align-items: center;
gap: var(--spacing-lg);
font-weight: var(--font-weight-semibold);
color: var(--header-brand-color);
}
.right {
@@ -39,18 +40,20 @@
.logo img {
height: 40px;
transition: filter 0.2s ease;
color: white;
}
.brandText {
font-size: 1.1rem;
font-weight: var(--font-weight-semibold);
color: var(--header-brand-color);
color: white;
}
.menuIcon {
font-size: 24px;
cursor: pointer;
color: var(--text-primary);
color: white;
padding: var(--spacing-xs);
border-radius: var(--border-radius-md);
transition: var(--transition-fast);