fix: add icon picker scss to client side as well

This commit is contained in:
Barış Soner Uşaklı
2023-01-11 11:00:55 -05:00
parent 9d72f4509d
commit 53ea1867ab
3 changed files with 24 additions and 1 deletions

View File

@@ -1,5 +1,6 @@
{
"groups": "Groups",
"members": "Members",
"view_group": "View Group",
"owner": "Group Owner",
"new_group": "Create New Group",

View File

@@ -3,4 +3,5 @@
@import "global";
@import "modals";
@import "modules/picture-switcher";
@import "modules/bottom-sheet";
@import "modules/bottom-sheet";
@import "modules/icon-picker";

View 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;
}
}
}
}