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 src/components/ToolHeader/ToolHeader.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ $headerHeight: 46px;

.logo {
padding-top: 12px;

img {
object-fit: contain;
}
}

.Links {
Expand Down
2 changes: 1 addition & 1 deletion src/components/ToolHeader/ToolHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ const ToolHeader: FC<TToolHeader> = ({
<Link href="/" locale={locale} legacyBehavior>
<a target={homepageLinkTarget} className={styles.logo}>
<Image
src={'/assets/logos/keepsimpleNewYear.svg'}
src={'/assets/logos/keepsimple.svg'}
alt="keepsimple logo"
width={130.61}
height={25.87}
Expand Down
7 changes: 0 additions & 7 deletions src/layouts/UXCoreLayout/UXCoreLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import React, { FC, useEffect, useState } from 'react';
import { useRouter } from 'next/router';
import cn from 'classnames';
import dynamic from 'next/dynamic';
import Snowfall from 'react-snowfall';

import type { TRouter } from '@local-types/global';
import type { UXCoreLayoutProps } from './UXCoreLayout.types';
Expand Down Expand Up @@ -171,12 +170,6 @@ const UXCoreLayout: FC<UXCoreLayoutProps> = ({
{isCoreView && <Search biases={strapiBiases} />}
{isCoreView && (
<>
<Snowfall
snowflakeCount={250}
radius={[3, 3]}
color={'#ddf0fa'}
style={{ zIndex: 999 }}
/>
<CoreViewLayout biases={strapiBiases} />
{locale !== 'hy' && openPodcast && (
<UXCorePopup
Expand Down