diff --git a/components/common/WalletModal.vue b/components/common/WalletModal.vue index 503326969a..4c4e50af1f 100644 --- a/components/common/WalletModal.vue +++ b/components/common/WalletModal.vue @@ -1,14 +1,15 @@ @@ -227,32 +243,113 @@ export default class WalletModal extends mixins(UseApiMixin, ChainMixin) { diff --git a/plugins/icons.ts b/plugins/icons.ts index 8a493abe1d..b4aee6d44b 100644 --- a/plugins/icons.ts +++ b/plugins/icons.ts @@ -1,120 +1,122 @@ import Vue from 'vue' import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome' -import { library, config } from '@fortawesome/fontawesome-svg-core' +import { config, library } from '@fortawesome/fontawesome-svg-core' // nuxt will handle css config.autoAddCss = false import { - faPaperPlane, - faFileImage, - faPlus, - faSync, - faTimes, - faTimesCircle, - faTrash, - faCloudDownloadAlt, - faKey, - faExternalLinkAlt, - faUpload, - faUsers, - faQuestionCircle, - faMinus, - faSearch, - faInfoCircle, + faAngleLeft, + faAngleRight, + faArrowUp, + faArrowsAlt, + faBookOpen, + faBookmark, + faCalculator, + faCalendar, + faCameraRetro, + faCaretDown, + faCaretUp, + faChartLine, faChevronDown, - faChevronUp, faChevronLeft, faChevronRight, - faHeart, - faCaretDown, - faCaretUp, - faInfo, - faShareSquare, - faCopy, - faBookmark, - faLink, - faLanguage, - faQuestion, - faPrint, - faMagic, - faEye, - faCommentAlt, - faDice, - faGhost, - faCode, - faLeaf, - faFlask, - faCameraRetro, - faTag, - faShareAlt, - faShare, - faExclamationTriangle, - faCalendar, - faCalculator, - faEnvelope, + faChevronUp, faClock, - faArrowsAlt, - faCompressAlt, + faCloudDownloadAlt, + faCode, + faCommentAlt, faCompress, + faCompressAlt, faCompressArrowsAlt, - faAngleLeft, - faAngleRight, - faReply, + faCopy, + faCube, + faDice, + faDownload, + faEllipsisH, + faEnvelope, + faExclamationCircle, + faExclamationTriangle, + faExpand, + faExternalLinkAlt, faExternalLinkSquareAlt, - faGift, - faThLarge, - faTh, + faEye, faEyeSlash, - faArrowUp, - faUser, - faGlobe, - faExclamationCircle, + faFileImage, faFilter, - faQrcode, faFire, + faFlask, + faGhost, + faGift, + faGlobe, + faHeart, + faHistory, + faImage, + faInfo, + faInfoCircle, + faKey, + faLanguage, + faLeaf, + faLightbulb, + faLink, + faListUl, + faMagic, + faMinus, faMoneyBill, faMoneyBillAlt, faPalette, - faHistory, - faEllipsisH, - faLightbulb, - faCube, - faExpand, - faImage, + faPaperPlane, + faPlus, + faPrint, + faQrcode, + faQuestion, + faQuestionCircle, + faReply, + faSearch, + faShare, + faShareAlt, + faShareSquare, faSignOutAlt, - faWallet, - faChartLine, - faListUl, + faSync, faTable, - faDownload, + faTag, + faTh, + faThLarge, + faTimes, + faTimesCircle, + faTrash, + faUpload, + faUser, + faUsers, + faWallet, } from '@fortawesome/free-solid-svg-icons' // throws error, idk why import { faCommentDots, - faThumbsUp, faThumbsDown, + faThumbsUp, } from '@fortawesome/free-regular-svg-icons' import { - faTwitter, - faLine, - faTelegram, + faDiscord, faFacebook, faFacebookMessenger, - faTelegramPlane, + faInstagram, + faLine, faMedium, - faWhatsapp, faPinterest, - faWpexplorer, - faDiscord, faRedditAlien, + faTelegram, + faTelegramPlane, + faTwitter, + faWhatsapp, + faWpexplorer, faYoutube, - faInstagram, } from '@fortawesome/free-brands-svg-icons' library.add( + faBookOpen, faPaperPlane, faFileImage, faPlus, @@ -218,4 +220,4 @@ library.add( faInstagram ) -Vue.component('vue-fontawesome', FontAwesomeIcon) +Vue.component('VueFontawesome', FontAwesomeIcon) diff --git a/styles/components/_modal.scss b/styles/components/_modal.scss index e09c3aed9a..87da020aab 100644 --- a/styles/components/_modal.scss +++ b/styles/components/_modal.scss @@ -3,7 +3,7 @@ } .modal-background { - background-color: rgba(0, 0, 0, 0.86); + background-color: rgba(0, 0, 0, 0.5); } .modal { @@ -16,4 +16,5 @@ box-shadow: 13px 14px rgba(90, 15, 60, 0.7); width: fit-content; } + } diff --git a/styles/themes/_dark.scss b/styles/themes/_dark.scss index 7295d81614..67f8f3b496 100644 --- a/styles/themes/_dark.scss +++ b/styles/themes/_dark.scss @@ -143,4 +143,40 @@ html.dark-mode { } } } + + .modal-card-container { + border: 1px solid white; + .wallet .buttons { + button { + background: $background-dark; + border: 1px solid $white; + } + .button { + background: $background-dark; + border: 1px solid $white; + border-radius: unset; + } + } + .modal-card-bg { + background: $white; + } + .modal-card-head { + background: $background-dark; + .delete { + background: none; + &::before { + background-color: $white + } + &::after { + background-color: $white + } + } + } + .wallet-name { + background: $white !important; + .is-white { + color: $background-dark !important; + } + } + } }