forked from decidim/decidim
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Icons in some Admin dashboard areas are misaligned (decidim#13697)
* Icons in some Admin dashboard areas are misaligned * fix code * Initiative refactor * running linters * Update decidim-admin/app/packs/stylesheets/decidim/admin/_moderations.scss Co-authored-by: Tom Greenwood <101816158+greenwoodt@users.noreply.github.com> --------- Co-authored-by: Alexandru Emil Lupu <contact@alecslupu.ro> Co-authored-by: Tom Greenwood <101816158+greenwoodt@users.noreply.github.com>
- Loading branch information
1 parent
54e0a5f
commit 454b966
Showing
5 changed files
with
25 additions
and
0 deletions.
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
2 changes: 2 additions & 0 deletions
2
decidim-initiatives/app/packs/entrypoints/decidim_initiatives_admin.js
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,5 @@ | ||
import "src/decidim/initiatives/admin/initiatives_types" | ||
import "src/decidim/initiatives/admin/invite_users" | ||
import "src/decidim/initiatives/scoped_type" | ||
|
||
import "entrypoints/decidim_initiatives_admin.scss" |
1 change: 1 addition & 0 deletions
1
decidim-initiatives/app/packs/entrypoints/decidim_initiatives_admin.scss
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 @@ | ||
@import "stylesheets/decidim/initiatives/admin/initiatives.scss"; |
13 changes: 13 additions & 0 deletions
13
decidim-initiatives/app/packs/stylesheets/decidim/initiatives/admin/initiatives.scss
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,13 @@ | ||
#committee_members { | ||
.card-section { | ||
.row { | ||
div[data-committee_link] { | ||
@apply flex items-center; | ||
|
||
svg { | ||
@apply mx-1; | ||
} | ||
} | ||
} | ||
} | ||
} |
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