diff --git a/src/background.ts b/src/background.ts index 7ad60290..52da64bb 100644 --- a/src/background.ts +++ b/src/background.ts @@ -32,7 +32,7 @@ function createWindow() { // Create the browser window. win = new BrowserWindow({ width: 1350, - height: 1005, + height: 955, webPreferences: { // Use pluginOptions.nodeIntegration, leave this alone // See nklayman.github.io/vue-cli-plugin-electron-builder/guide/security.html#node-integration for more info diff --git a/src/presentation/Bootstrapping/Modules/IconBootstrapper.ts b/src/presentation/Bootstrapping/Modules/IconBootstrapper.ts index 59fdb1bd..f1879bf1 100644 --- a/src/presentation/Bootstrapping/Modules/IconBootstrapper.ts +++ b/src/presentation/Bootstrapping/Modules/IconBootstrapper.ts @@ -4,15 +4,20 @@ import { faGithub } from '@fortawesome/free-brands-svg-icons'; /** BRAND ICONS (PREFIX: fab) */ import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome'; /** REGULAR ICONS (PREFIX: far) */ -import { faFolderOpen, faFolder } from '@fortawesome/free-regular-svg-icons'; +import { faFolderOpen, faFolder, faComment, faSmile } from '@fortawesome/free-regular-svg-icons'; /** SOLID ICONS (PREFIX: fas (default)) */ -import { faTimes, faFileDownload, faCopy, faSearch, faInfoCircle } from '@fortawesome/free-solid-svg-icons'; +import { faTimes, faFileDownload, faCopy, faSearch, faInfoCircle, faUserSecret, faDesktop, faTag, faGlobe } from '@fortawesome/free-solid-svg-icons'; export class IconBootstrapper implements IVueBootstrapper { public bootstrap(vue: VueConstructor): void { library.add( faGithub, + faUserSecret, + faSmile, + faDesktop, + faGlobe, + faTag, faFolderOpen, faFolder, faTimes, diff --git a/src/presentation/Scripts/Cards/CardListItem.vue b/src/presentation/Scripts/Cards/CardListItem.vue index 6b561a08..948d63b5 100644 --- a/src/presentation/Scripts/Cards/CardListItem.vue +++ b/src/presentation/Scripts/Cards/CardListItem.vue @@ -75,10 +75,7 @@ export default class CardListItem extends StatefulVue { diff --git a/src/presentation/styles/colors.scss b/src/presentation/styles/colors.scss index 2b084dae..2018c485 100644 --- a/src/presentation/styles/colors.scss +++ b/src/presentation/styles/colors.scss @@ -1,8 +1,8 @@ $white: #fff; $light-gray: #eceef1; -$gray: darken(#eceef1, 30%); +$gray: darken($light-gray, 30%); $dark-gray: #616f86; -$slate: darken(#eceef1, 70%); +$slate: darken($light-gray, 70%); $dark-slate: #2f3133; $accent: #1abc9c; $black: #000 \ No newline at end of file diff --git a/src/presentation/styles/media.scss b/src/presentation/styles/media.scss new file mode 100644 index 00000000..74d9925d --- /dev/null +++ b/src/presentation/styles/media.scss @@ -0,0 +1,3 @@ +$big-screen-width: 992px; +$medium-screen-width: 768px; +$small-screen-width: 380px; \ No newline at end of file