-
Notifications
You must be signed in to change notification settings - Fork 0
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
Changes from all commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
b62d95c
Updated packages
anttiasmala 9ef7e6f
Added styles so text will not go over boards when viewing by mobile
anttiasmala aa2d37e
Removed h-5 style attribute. Does nothing
anttiasmala 1129616
Input fields will now stay same sized and center of the website no ma…
anttiasmala 3a35582
Changed Aku Ankka to Matti Meikäläinen to make more sense. Matti Meik…
anttiasmala b922e3d
Moved Button components out from <li> parent
anttiasmala bb9a459
Moved a few stylers from wrapping Div to the Li element
anttiasmala 420b918
Changed a few margins to make it better
anttiasmala 21a19c1
Added underline when moving cursor to edit button. This changes Div's…
anttiasmala cbb2fd8
Added overflow-auto to DeletingModal.tsx so if text is very long it d…
anttiasmala dd0ebcd
Added a few styling changes to make it better
anttiasmala 73267b2
Added meta element for mobile views
anttiasmala b9f2910
Changed background color to white
anttiasmala 3d5df4d
Added a new animation opacity
anttiasmala bb22f6c
Changed width animation to opacity. Width animation does not work tha…
anttiasmala 688b4f3
Added w-full for mobile devices for Gift list. Added overflow-wrap va…
anttiasmala 452ba0e
Added a little margin to left on Gift list wrapper to make a small gap
anttiasmala ac22183
Changed resizes-visual to resizes-content to make inputs movable alwa…
anttiasmala c366ffa
Changed margin-left -> padding-left to fix a minimalistic gap that ma…
anttiasmala 97c8ea2
Added overflow-wrap to DeleteModal too to make gift not be scrollable
anttiasmala 9147ece
Removed width=device-width. Didn't seem to have any impact
anttiasmala 02e3c25
Changed styling attributes to make elements being align even
anttiasmala b356dad
Changed w-[20rem] to max-w-xl in index.ts
anttiasmala ab6f09b
Replace js underline and line-through with css solution
samuliasmala File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,17 @@ | ||
import '~/styles/globals.css'; | ||
import type { AppProps } from 'next/app'; | ||
import Head from 'next/head'; | ||
|
||
export default function App({ Component, pageProps }: AppProps) { | ||
return <Component {...pageProps} />; | ||
return ( | ||
<> | ||
<Head> | ||
<meta | ||
name="viewport" | ||
content="initial-scale=1.0, interactive-widget=resizes-content" | ||
/> | ||
</Head> | ||
<Component {...pageProps} /> | ||
</> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,11 @@ | ||
@tailwind base; | ||
@tailwind components; | ||
@tailwind utilities; | ||
|
||
.hover-target:has(~ .trigger-line-through:hover) { | ||
@apply line-through; | ||
} | ||
|
||
.hover-target:has(~ .trigger-underline:hover) { | ||
@apply underline; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Olisiko tämän hyvä olla erivärinen kuin "tavallinen" taustaväri?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Annetaan olla näin kun teit nyt. Ulla tekee pian designiin visuaalisia parannuksia, niin muokataan tätä sitten tarvittaessa.