Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Antti/frontend_fix #15

Merged
merged 24 commits into from
Mar 17, 2024
Merged
Show file tree
Hide file tree
Changes from 10 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
b62d95c
Updated packages
anttiasmala Mar 3, 2024
9ef7e6f
Added styles so text will not go over boards when viewing by mobile
anttiasmala Mar 3, 2024
aa2d37e
Removed h-5 style attribute. Does nothing
anttiasmala Mar 3, 2024
1129616
Input fields will now stay same sized and center of the website no ma…
anttiasmala Mar 3, 2024
3a35582
Changed Aku Ankka to Matti Meikäläinen to make more sense. Matti Meik…
anttiasmala Mar 3, 2024
b922e3d
Moved Button components out from <li> parent
anttiasmala Mar 3, 2024
bb9a459
Moved a few stylers from wrapping Div to the Li element
anttiasmala Mar 3, 2024
420b918
Changed a few margins to make it better
anttiasmala Mar 3, 2024
21a19c1
Added underline when moving cursor to edit button. This changes Div's…
anttiasmala Mar 3, 2024
cbb2fd8
Added overflow-auto to DeletingModal.tsx so if text is very long it d…
anttiasmala Mar 3, 2024
dd0ebcd
Added a few styling changes to make it better
anttiasmala Mar 3, 2024
73267b2
Added meta element for mobile views
anttiasmala Mar 4, 2024
b9f2910
Changed background color to white
anttiasmala Mar 4, 2024
3d5df4d
Added a new animation opacity
anttiasmala Mar 5, 2024
bb22f6c
Changed width animation to opacity. Width animation does not work tha…
anttiasmala Mar 5, 2024
688b4f3
Added w-full for mobile devices for Gift list. Added overflow-wrap va…
anttiasmala Mar 5, 2024
452ba0e
Added a little margin to left on Gift list wrapper to make a small gap
anttiasmala Mar 5, 2024
ac22183
Changed resizes-visual to resizes-content to make inputs movable alwa…
anttiasmala Mar 5, 2024
c366ffa
Changed margin-left -> padding-left to fix a minimalistic gap that ma…
anttiasmala Mar 5, 2024
97c8ea2
Added overflow-wrap to DeleteModal too to make gift not be scrollable
anttiasmala Mar 5, 2024
9147ece
Removed width=device-width. Didn't seem to have any impact
anttiasmala Mar 13, 2024
02e3c25
Changed styling attributes to make elements being align even
anttiasmala Mar 13, 2024
b356dad
Changed w-[20rem] to max-w-xl in index.ts
anttiasmala Mar 14, 2024
ab6f09b
Replace js underline and line-through with css solution
samuliasmala Mar 14, 2024
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
2 changes: 1 addition & 1 deletion components/DeleteModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export function DeleteModal({
<TitleText className="row-start-1 row-end-1 ps-5 font-bold">
Deleting:
</TitleText>
<p className="row-start-2 row-end-2 ps-5 pt-5 text-lg w-full h-full font-bold">
<p className="row-start-2 row-end-2 ps-5 pt-5 text-lg w-full h-full font-bold overflow-auto">
{gift.receiver} - {gift.gift}
</p>
<Button className="border border-yellow-500 mt-3 p-0 row-start-3 row-end-3 col-start-1 col-end-1 w-[66px] h-[66px]">
Expand Down
Loading
Loading