Skip to content

Commit

Permalink
Fixing details and bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
SProkopios committed Jan 24, 2025
1 parent 67cf910 commit 55b3a05
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { useState } from 'react';
import { Button, ButtonTheme } from '@/shared/ui/Button/Button';
import { useClientTranslation } from '@/shared/i18n';
import useIsMobileSize from '@/shared/lib/hooks/useIsMobileSize';
import { default as FeedbackCard } from '../FeedbackCard/FeedbackCard';
import { FeedbackCard } from '@/shared/ui/v2/Feedback/index';
import cls from './FeedbackSideButton.module.scss';

type Props = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,17 @@
display: flex;
flex-direction: column;
align-items: flex-start;
margin: 10px;
margin: 5px;

width: 300px;
height: 300px;
width: 320px;
height:fit-content;
padding-top: 0px;

display: flex;
flex-direction: column;
align-items: center;
gap: 12px;
gap: 10px;
box-shadow: 3px 4px 0px #121212;
}


Expand All @@ -23,8 +24,7 @@
font-size: 32px;
line-height: 40px;

width: 240px;
height: 80px;
height: fit-content;

color: #FFA101;
};
Expand Down Expand Up @@ -98,4 +98,5 @@
display: inline-block; /* Varautuu block-tilan oletukseen */
vertical-align: middle; /* Sijoittaa tekstin pystysuunnassa keskelle */
justify-items: end;
padding: 0px 10px 0px 10px;
}

0 comments on commit 55b3a05

Please sign in to comment.