-
Notifications
You must be signed in to change notification settings - Fork 1
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
Development Complete #1
Open
AnkitaBagale
wants to merge
53
commits into
main
Choose a base branch
from
development
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 15 commits
Commits
Show all changes
53 commits
Select commit
Hold shift + click to select a range
7aac1b9
feat: router v6
AnkitaBagale 34ccd1a
fix: warnings
AnkitaBagale 8ad9d1b
fix: warning
AnkitaBagale 104a47a
feat: category filter
AnkitaBagale eef4208
feat: add note
AnkitaBagale 6fd4136
fix warning
AnkitaBagale 7bde13a
feat: sidebar
AnkitaBagale a3fbd91
feat: homepage added
AnkitaBagale b5f2475
fix: warnings
AnkitaBagale e434470
refactor: explore filter
AnkitaBagale 7a86268
refactor: review comments
AnkitaBagale 462ddd1
refactor: files
AnkitaBagale 6f9d5c1
feat: auth added
AnkitaBagale 3df9929
completed api calls
AnkitaBagale 2d3634c
fix: warnings
AnkitaBagale 7b1a533
fix: video datail page error handling
AnkitaBagale 215ec4f
fix: video id undefined
AnkitaBagale 44346b0
feat: search bar and action buttons
AnkitaBagale 8d158dd
feat: loader and toast
AnkitaBagale 9a52571
refactor: review comments
AnkitaBagale 846b633
fix: sign up route after login
AnkitaBagale 0954809
docs: readme update
AnkitaBagale 396de03
docs: readme update
AnkitaBagale 065b669
docs: readme update
AnkitaBagale caf6ad7
fix: router scroll issue
AnkitaBagale cdb4c56
fix: sign up and forget password issue
AnkitaBagale 196b6bb
fix: data persistence after logout
AnkitaBagale 7816a29
feat: JWT authentication
AnkitaBagale b9a0752
fix: api url
AnkitaBagale 5d4507c
fix: 401 error handler
AnkitaBagale 83a64e5
fix: forgot password api url
AnkitaBagale c6e62a0
fix: status codes
AnkitaBagale e4f6f93
feat: share video
AnkitaBagale 3b49338
fix: share url
AnkitaBagale 3b8b33c
fix: change share url
AnkitaBagale 3e61b5e
Update README.md
AnkitaBagale 4995051
fix: small UI issues
AnkitaBagale 031118c
fix: nav items dry
AnkitaBagale 1dbd257
Merge pull request #2 from AnkitaBagale/ankita-fix-nitpicks
AnkitaBagale 6f9e4f1
fix: spell
AnkitaBagale f4e40fc
Merge pull request #3 from AnkitaBagale/ankita-fix-nitpicks
AnkitaBagale cd83829
fix: axios error handler
AnkitaBagale 80ff8bc
fix: warning
AnkitaBagale 37222e5
Merge pull request #4 from AnkitaBagale/ankita-fix-nitpicks
AnkitaBagale c2f3ece
fix: footer color
AnkitaBagale b85d6b2
Merge pull request #5 from AnkitaBagale/ankita-fix-nitpicks
AnkitaBagale a24e1c4
feat: login with test creds
AnkitaBagale 62008b4
fix: enter key press in search bar
AnkitaBagale 199b814
fix: image sizes
AnkitaBagale d136d5a
add: login on sign up
AnkitaBagale 06e6081
fix: api url
AnkitaBagale b2e9f65
fix: liked videos deletion
AnkitaBagale 47999ac
fix: liked videos deletion
AnkitaBagale 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
/* /index.html 200 |
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
Binary file not shown.
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,38 +1,151 @@ | ||
.App { | ||
text-align: center; | ||
:root{ | ||
--bg-light-pink : #fff7f9; | ||
--bg-lesslight-pink : #ffd9e2; | ||
} | ||
|
||
.App-logo { | ||
height: 40vmin; | ||
pointer-events: none; | ||
*{ | ||
box-sizing: border-box; | ||
} | ||
|
||
@media (prefers-reduced-motion: no-preference) { | ||
.App-logo { | ||
animation: App-logo-spin infinite 20s linear; | ||
} | ||
.bg-light-pink{ | ||
background-color: var(--bg-light-pink); | ||
} | ||
|
||
.App-header { | ||
background-color: #282c34; | ||
min-height: 100vh; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
justify-content: center; | ||
font-size: calc(10px + 2vmin); | ||
color: white; | ||
.bg-lesslight-pink{ | ||
background-color: var(--bg-lesslight-pink); | ||
} | ||
.text-green{ | ||
color: #03a685; | ||
} | ||
.spacer-3rem { | ||
width: 100%; | ||
height: 3rem; | ||
} | ||
.margin-0{ | ||
margin: 0; | ||
} | ||
|
||
.logo-title{ | ||
font-size: 2rem; | ||
font-family: 'Roboto Slab', serif; | ||
font-weight: 500; | ||
|
||
.App-link { | ||
color: #61dafb; | ||
} | ||
.logo-and-symbol-style{ | ||
font-size: 1rem; | ||
margin-right: 0.1875rem; | ||
} | ||
.logo-tagline{ | ||
font-size:0.625rem; | ||
font-weight:500; | ||
letter-spacing: 1px; | ||
} | ||
|
||
@keyframes App-logo-spin { | ||
from { | ||
transform: rotate(0deg); | ||
} | ||
to { | ||
transform: rotate(360deg); | ||
.app-container{ | ||
min-height: 60vh; | ||
} | ||
.text-light-weight{ | ||
font-weight: 400; | ||
} | ||
.padding-around-1rem{ | ||
padding: 1rem; | ||
} | ||
.card-horizontal .image-container { | ||
height: auto; | ||
} | ||
.grid-4-column-layout{ | ||
box-sizing: border-box; | ||
} | ||
.border-1px-square { | ||
border: 1px solid #e9e9eb; | ||
} | ||
.width-100pc{ | ||
width:100%; | ||
} | ||
.margin-bottom-0{ | ||
margin-bottom: 0; | ||
} | ||
.margin-bottom-1rem{ | ||
margin-bottom: 1rem; | ||
} | ||
.grid-item-nav{ | ||
grid-area: nav; | ||
} | ||
.grid-item-footer{ | ||
grid-area: footer; | ||
} | ||
.grid-item-main{ | ||
grid-area: main; | ||
} | ||
|
||
.page-grid-layout { | ||
display: grid; | ||
grid-template-columns: 1fr; | ||
grid-template-areas: "nav" | ||
"main" | ||
"footer"; | ||
} | ||
.margin-top-3rem{ | ||
margin-top: 3rem; | ||
} | ||
.height-90vh{ | ||
height: 90vh; | ||
} | ||
.scrollbar-styled{ | ||
overflow-y: auto; | ||
} | ||
.scrollbar-styled::-webkit-scrollbar { | ||
width: 0.25rem; | ||
} | ||
|
||
.scrollbar-styled::-webkit-scrollbar-thumb { | ||
background-color: rgb(216, 215, 216); | ||
|
||
} | ||
.scrollbar-styled::-webkit-scrollbar-track { | ||
background: #edebef; | ||
} | ||
|
||
.border-radius-1rem{ | ||
border-radius: 1rem; | ||
} | ||
.margin-top-1rem{ | ||
margin-top:1rem; | ||
} | ||
|
||
.margin-top-2rem{ | ||
margin-top: 2rem; | ||
} | ||
.shadow-right{ | ||
box-shadow: 4px 8px 12px 0px rgb(0 0 0 / 5%); | ||
} | ||
|
||
.padding-right-0{ | ||
padding-right: 0; | ||
} | ||
.padding-top-1rem{ | ||
padding-top: 1rem; | ||
} | ||
.btn-text-icon-secondary .btn-icon.padding-0{ | ||
padding: 0; | ||
} | ||
.padding-bottom-1rem{ | ||
padding-bottom: 1rem; | ||
} | ||
.padding-left-1rem{ | ||
padding-left: 1rem; | ||
} | ||
.padding-right-1rem{ | ||
padding-right: 1rem; | ||
} | ||
|
||
@media screen and (min-width: 1025px){ | ||
.hide-in-desktop{ | ||
display: none; | ||
} | ||
} | ||
@media screen and (max-width: 768px){ | ||
.hide-in-mobile{ | ||
display: none; | ||
} | ||
} |
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.
this could be combined in line 113
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.
Done