Skip to content

Commit

Permalink
adjust onboarding and privacy header logo
Browse files Browse the repository at this point in the history
  • Loading branch information
carlos-kryha committed Dec 13, 2023
1 parent c7b3b7c commit 7bd41ff
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
4 changes: 3 additions & 1 deletion frontend/src/pages/content-mobile/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ export const Title = styled(FormText)``;

export const InfoContainer = styled.div`
padding-left: 20px;
padding-right: 20px;
padding-top: 4%;
${TitleText} {
margin-top: ${margins.mini};
Expand All @@ -34,7 +35,8 @@ export const GeneralInfo = styled.div`
export const KreadContainer = styled.div`
display: flex;
flex: 1;
justify-content: center;
justify-content: start;
padding-left: 30px;
margin-top: 30px;
${KreadIcon} {
width: 100px;
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/pages/onboarding-mobile/onboarding-mobile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export const OnboardingMobile: FC = () => {
localStorage.setItem(FIRST_TIME, "false");
setShowAnimation(false);
};
console.log(showSlider)

return (
<OnboardingWrapper>
{showAnimation ? (
Expand Down
5 changes: 3 additions & 2 deletions frontend/src/pages/onboarding-mobile/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import styled from "@emotion/styled";
import { ArrowUpRightIcon } from "../../assets";
import { changeSize, CharacterImgs, disappear, fadeIn, PrimaryButton, slideUp, TitleText } from "../../components";
import { KreadIcon } from "../../components/logo/styles";
import { color, fontWeight } from "../../design";
import { color, fontWeight, margins } from "../../design";

interface HeightProps {
height: number;
Expand Down Expand Up @@ -141,7 +141,8 @@ export const KreadLogo = styled(KreadIcon)`
export const LogoContainer = styled.div`
display: flex;
flex: 1;
justify-content: center;
justify-content: start;
padding-left: 30px;
margin-top: 30px;
${KreadLogo} {
width: 100px;
Expand Down

0 comments on commit 7bd41ff

Please sign in to comment.