Skip to content

Commit

Permalink
UPDATE: more emojisearch fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
fileformat committed Sep 12, 2024
1 parent 7d6a1c9 commit abfe985
Show file tree
Hide file tree
Showing 12 changed files with 9,847 additions and 4 deletions.
4 changes: 2 additions & 2 deletions data/emojisearch/translations.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"IMG_ALT": "EmojiSearch Logo",
"SITE_NAME": "Emoji Search",
"SOURCES": "Sources",
"SOURCES_URL": "/sources/emoji/icons.html",
"SOURCES_URL": "/sources/index.html",
"FAQ": "FAQ"
},
"IMAGE_PAGE": {
Expand Down Expand Up @@ -55,7 +55,7 @@
},
"SOURCES_PAGE": {
"TITLE": "Emoji Sources",
"INFO_BOX_HTML": "Did I miss one? <a class=\"alert-link\" href=\"/contact.html\">Let me know</a>! If you are technically inclined, direct <a class=\"alert-link\" href=\"https://github.com/VectorLogoZone/git-svg-icons/blob/main/CONTRIBUTING.md\">contributions</a> are welcome!"
"INFO_BOX_HTML": "Submit additional sources on <a class=\"alert-link\" href=\"https://github.com/VectorLogoZone/git-svg-icons/blob/master/.github/ISSUE_TEMPLATE/add-a-site.md\">Github</a>., and try some <a class=\"alert-link\" href=\"/alternatives/index.html\">alternatives</a>."
}
}
}
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@
},
"scripts": {
"build": "tsc",
"css-emojisearch": "sass scss/iconsearch.scss:static/emojisearch/css/style.css",
"css-icons": "sass scss/iconsearch.scss:static/iconsearch/css/style.css",
"css-logos": "sass scss/logosearch.scss:static/logosearch/css/style.css",
"css-supertinyicons": "sass scss/supertinyicons.scss:static/supertinyicons/css/style.css",
Expand Down
10 changes: 10 additions & 0 deletions scss/emojisearch.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
$enable-responsive-font-sizes: false;
$font-family-sans-serif: Lato, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !default;
$headings-font-family: "Emily's Candy", sans-serif;
$headings-font-weight: 700;



// Bootstrap and its default variables
@import "../node_modules/bootstrap/scss/bootstrap";
@import "common";
4 changes: 2 additions & 2 deletions src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ const config = convict({
},
identity: {
default: 'logosearch',
doc: 'Site Identity (iconsearch, logosearch, supertinyicons or unicodesearch)',
doc: 'Site Identity',
env: 'IDENTITY',
format: [ 'iconsearch', 'logosearch', 'supertinyicons', 'unicodesearch' ],
format: [ 'emojisearch', 'iconsearch', 'logosearch', 'supertinyicons', 'unicodesearch' ],
},
logLevel: {
default: 'debug',
Expand Down
Loading

0 comments on commit abfe985

Please sign in to comment.