Skip to content

Commit cb5ae81

Browse files
committed
chore: Add new year logo
- remove underline of active state on mobile header
1 parent 45eb04c commit cb5ae81

3 files changed

Lines changed: 26 additions & 3 deletions

File tree

src/components/Header/Header.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@ const Header: FC = () => {
7070
}}
7171
src={
7272
isDarkTheme
73-
? '/keepsimple_/assets/logos/keepsimpleDark.svg'
74-
: '/keepsimple_/assets/logos/keepsimple-company-mngmnt.svg'
73+
? '/keepsimple_/assets/logos/keepsimpleNewYearDark.svg'
74+
: '/keepsimple_/assets/logos/keepsimpleNewYear.svg'
7575
}
7676
alt="keepsimple logo"
7777
width={130.61}

src/components/Navbar/Navbar.module.scss

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,7 @@
102102
.contributors {
103103
color: #fafafa;
104104
}
105+
105106
.uxcoreIcon,
106107
.companyManagementIcon {
107108
svg {
@@ -110,6 +111,7 @@
110111
}
111112
}
112113
}
114+
113115
.url {
114116
color: #dadada;
115117

@@ -215,8 +217,23 @@
215217
}
216218
}
217219

220+
.url {
221+
&:after {
222+
content: none;
223+
}
224+
&:hover {
225+
&:after {
226+
content: none;
227+
}
228+
}
229+
}
230+
218231
.active {
219232
border-left: 1px solid #252626;
233+
234+
&:after {
235+
content: none;
236+
}
220237
}
221238

222239
&.authorized {

src/components/_company-management/PyramidInfoSection/PyramidInfoSection.tsx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,13 @@ const PyramidInfoSection: FC<PyramidInfoSectionProps> = ({
168168
<div className={styles.head}>
169169
<div className={styles.mobileHeader}>
170170
<div className={styles.imgWrapper}>
171-
<img src={icon} width={45} height={39} alt={title} />
171+
<Image
172+
src={icon}
173+
width={45}
174+
height={39}
175+
alt={title}
176+
unoptimized
177+
/>
172178
</div>
173179
<h2 className={styles.title}>{title}</h2>
174180
</div>

0 commit comments

Comments
 (0)