Skip to content

Commit

Permalink
517 vue3 media icons fix (#518)
Browse files Browse the repository at this point in the history
  • Loading branch information
stanislawK authored May 31, 2023
1 parent fa0574e commit f618827
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"prettier/prettier": "error",
"no-unused-vars": ["warn", { "argsIgnorePattern": "^_" }],
"no-multi-spaces": ["error", { "ignoreEOLComments": false }],
"import/no-extraneous-dependencies": ["error"],
"import/no-extraneous-dependencies": ["error", {"devDependencies": true}],
"eol-last": ["error", "always"],
"no-multiple-empty-lines": [
"error",
Expand Down
3 changes: 3 additions & 0 deletions frontend/src/components/HomePage/SocialMedia/SocialMedia.vue
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,9 @@ h2 {
width: 50px;
height: 50px;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
}
ul.media-info {
display: flex;
Expand Down
11 changes: 10 additions & 1 deletion frontend/src/plugins/vuetify.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ import 'vuetify/styles'
import * as components from 'vuetify/components';
// eslint-disable-next-line
import * as directives from 'vuetify/directives';
// eslint-disable-next-line
import { aliases, fa } from 'vuetify/iconsets/fa';
// eslint-disable-next-line
import { mdi } from 'vuetify/iconsets/mdi';

import '@mdi/font/css/materialdesignicons.css';
import { createVuetify } from 'vuetify';
Expand All @@ -12,7 +16,12 @@ const vuetify = createVuetify({
components,
directives,
icons: {
iconfont: 'mdi',
defaultSet: 'fa',
aliases,
sets: {
fa,
mdi,
},
},
ssr: true,
});
Expand Down

0 comments on commit f618827

Please sign in to comment.