-
Notifications
You must be signed in to change notification settings - Fork 889
Fix(WEB-114): Implement modern empty state for Group list #3361
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
base: dev
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -7,3 +7,31 @@ | |
| */ | ||
|
|
||
| @use '../shared/styles/list-layout' as *; | ||
| @use '../../assets/styles/colours' as *; | ||
|
Contributor
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. Why not use the shared stiles?
Member
Author
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. Hi @IOhacker I used that path because the _colours.scss file is actually located inside the assets/styles/ folder right now, not the shared folder. I needed colors like $light-grey for the empty state. Would you like me to move the _colours.scss file into the shared/styles/ folder to keep things organized? Just let me know what you prefer! |
||
|
|
||
| .empty-state-container { | ||
| display: flex; | ||
| flex-direction: column; | ||
| align-items: center; | ||
| justify-content: center; | ||
| padding: 80px 24px; | ||
| background-color: $light-grey; | ||
| border: 2px dashed $silver; | ||
| border-radius: 8px; | ||
| margin: 24px 0; | ||
|
|
||
| .gray-text { | ||
| color: $asbestos; | ||
| font-size: 1.1rem; | ||
| margin-bottom: 24px; | ||
| } | ||
|
|
||
| fa-icon { | ||
| color: $silver; | ||
| } | ||
|
|
||
| h2 { | ||
| margin-top: 8px; | ||
| font-weight: 500; | ||
| } | ||
| } | ||
coderabbitai[bot] marked this conversation as resolved.
Show resolved
Hide resolved
|
||
Uh oh!
There was an error while loading. Please reload this page.