mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-01-21 23:12:58 +01:00
fix: add icon picker scss to client side as well
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"groups": "Groups",
|
||||
"members": "Members",
|
||||
"view_group": "View Group",
|
||||
"owner": "Group Owner",
|
||||
"new_group": "Create New Group",
|
||||
|
||||
@@ -3,4 +3,5 @@
|
||||
@import "global";
|
||||
@import "modals";
|
||||
@import "modules/picture-switcher";
|
||||
@import "modules/bottom-sheet";
|
||||
@import "modules/bottom-sheet";
|
||||
@import "modules/icon-picker";
|
||||
21
public/scss/modules/icon-picker.scss
Normal file
21
public/scss/modules/icon-picker.scss
Normal file
@@ -0,0 +1,21 @@
|
||||
.icon-container {
|
||||
.fa-nbb-none {
|
||||
border: 1px dotted $black;
|
||||
}
|
||||
.nbb-fa-icons {
|
||||
margin: 0;
|
||||
i {
|
||||
width: 36px;
|
||||
height: 36px;
|
||||
cursor: pointer;
|
||||
line-height: 36px;
|
||||
text-align: center;
|
||||
color: $body-color;
|
||||
margin: 4px;
|
||||
|
||||
&:hover, &.selected {
|
||||
background: $component-active-bg;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user