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: 2 additions & 2 deletions src/components/Header/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ const Header: FC = () => {
}}
src={
isDarkTheme
? '/keepsimple_/assets/logos/keepsimpleDark.svg'
: '/keepsimple_/assets/logos/keepsimple-company-mngmnt.svg'
? '/keepsimple_/assets/logos/keepsimpleNewYearDark.svg'
: '/keepsimple_/assets/logos/keepsimpleNewYear.svg'
}
alt="keepsimple logo"
width={130.61}
Expand Down
17 changes: 17 additions & 0 deletions src/components/Navbar/Navbar.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@
.contributors {
color: #fafafa;
}

.uxcoreIcon,
.companyManagementIcon {
svg {
Expand All @@ -110,6 +111,7 @@
}
}
}

.url {
color: #dadada;

Expand Down Expand Up @@ -215,8 +217,23 @@
}
}

.url {
&:after {
content: none;
}
&:hover {
&:after {
content: none;
}
}
}

.active {
border-left: 1px solid #252626;

&:after {
content: none;
}
}

&.authorized {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,13 @@ const PyramidInfoSection: FC<PyramidInfoSectionProps> = ({
<div className={styles.head}>
<div className={styles.mobileHeader}>
<div className={styles.imgWrapper}>
<img src={icon} width={45} height={39} alt={title} />
<Image
src={icon}
width={45}
height={39}
alt={title}
unoptimized
/>
</div>
<h2 className={styles.title}>{title}</h2>
</div>
Expand Down