-
Notifications
You must be signed in to change notification settings - Fork 6
feat: add new dashboard layout #3407
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
Merged
Merged
Changes from 14 commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
8ba55fe
feat: add new dashboard layout
andre-code 065bce8
Merge branch 'main' into andrea/add-new-dashboard-layout
andre-code e32321c
feat: add empty dashboard buttons
andre-code e106891
feat: add footer icon effect, fix text in userCard and set height in …
andre-code dbe4009
Merge branch 'main' into andrea/add-new-dashboard-layout
andre-code 9c19dd5
feat: add new copy for dashboard, and fix avatar size for groups
andre-code bdbef16
Merge branch 'main' into andrea/add-new-dashboard-layout
andre-code a88b823
fix e2e tests
andre-code 23bfb1c
resize file imgs, use stretched-link for user card and footer cards, …
andre-code 8b7e28c
Merge branch 'main' into andrea/add-new-dashboard-layout
andre-code 0a879ac
feat: include namespace in project list and ensure consistent use in …
andre-code aa30012
update styles using bootstrap classes
andre-code f34131d
feat: make a component for the footer card
andre-code cf42e5f
Merge branch 'main' into andrea/add-new-dashboard-layout
andre-code 9e751fa
fix: remove unnecessary position-relative and add effect in footer ca…
andre-code 78b0c6a
Merge branch 'main' into andrea/add-new-dashboard-layout
andre-code 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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,43 @@ | ||||||
@import "~bootstrap/scss/functions"; | ||||||
@import "~bootstrap/scss/variables"; | ||||||
@import "~bootstrap/scss/variables-dark"; | ||||||
@import "~bootstrap/scss/maps"; | ||||||
@import "~bootstrap/scss/mixins"; | ||||||
|
||||||
.DashboardHeader { | ||||||
height: auto; | ||||||
|
||||||
img { | ||||||
height: 150px; | ||||||
|
||||||
@include media-breakpoint-up(md) { | ||||||
height: 180px; | ||||||
} | ||||||
|
||||||
@include media-breakpoint-up(lg) { | ||||||
height: 130px; | ||||||
} | ||||||
} | ||||||
} | ||||||
|
||||||
.AnonymousAvatar { | ||||||
width: 64px; | ||||||
height: 64px; | ||||||
} | ||||||
|
||||||
.DashboardCard { | ||||||
background-color: rgba(var(--bs-primary-rgb), 0.1) !important; | ||||||
|
||||||
&:hover { | ||||||
background-color: var(--bs-primary-bg-subtle) !important; | ||||||
} | ||||||
} | ||||||
|
||||||
.FooterCard { | ||||||
a svg { | ||||||
transition: all 0.3s linear; | ||||||
} | ||||||
a:hover svg { | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Small detail, but this would be nice:
Suggested change
Reference: https://webaim.org/techniques/hypertext/link_text#hover |
||||||
transform: scale(1.3); | ||||||
} | ||||||
} |
Oops, something went wrong.
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.
Why do we have all of these assets? Can't we use a single SVG file for this?