mirror of
https://github.com/YunoHost/yunohost-admin.git
synced 2024-09-03 20:06:15 +02:00
add fork-awesome dep
This commit is contained in:
parent
712f22f6d3
commit
d7a6e80227
4 changed files with 17 additions and 0 deletions
5
app/package-lock.json
generated
5
app/package-lock.json
generated
|
@ -5273,6 +5273,11 @@
|
||||||
"integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=",
|
"integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=",
|
||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
|
"fork-awesome": {
|
||||||
|
"version": "1.1.7",
|
||||||
|
"resolved": "https://registry.npmjs.org/fork-awesome/-/fork-awesome-1.1.7.tgz",
|
||||||
|
"integrity": "sha512-IHI7XCSXrKfUIWslse8c/PaaVDT1oBaYge+ju40ihL2ooiQeBpTr4wvIXhgTd2NuhntlvX+M5jYHAPTzNlmv0g=="
|
||||||
|
},
|
||||||
"form-data": {
|
"form-data": {
|
||||||
"version": "2.3.3",
|
"version": "2.3.3",
|
||||||
"resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz",
|
"resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz",
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"bootstrap-vue": "^2.1.0",
|
"bootstrap-vue": "^2.1.0",
|
||||||
"core-js": "^3.6.5",
|
"core-js": "^3.6.5",
|
||||||
|
"fork-awesome": "^1.1.7",
|
||||||
"vue": "^2.6.11",
|
"vue": "^2.6.11",
|
||||||
"vue-i18n": "^8.17.3",
|
"vue-i18n": "^8.17.3",
|
||||||
"vue-router": "^3.2.0"
|
"vue-router": "^3.2.0"
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
// Bootstrap and BootstrapVue variable may be overrides here. Full list available here:
|
// Bootstrap and BootstrapVue variable may be overrides here. Full list available here:
|
||||||
// Bootstrap: `app/node_modules/bootstrap/scss/_variables.scss`
|
// Bootstrap: `app/node_modules/bootstrap/scss/_variables.scss`
|
||||||
// BootstrapVue: `app/node_modules/bootstrap-vue/src/_variables.scss`
|
// BootstrapVue: `app/node_modules/bootstrap-vue/src/_variables.scss`
|
||||||
|
|
||||||
|
// fork-awesome font location
|
||||||
|
$fa-font-path: '~fork-awesome/fonts';
|
||||||
|
$fa-font-size-base: 1rem;
|
||||||
|
|
|
@ -9,8 +9,15 @@
|
||||||
@import '~bootstrap/scss/bootstrap.scss';
|
@import '~bootstrap/scss/bootstrap.scss';
|
||||||
@import '~bootstrap-vue/src/index.scss';
|
@import '~bootstrap-vue/src/index.scss';
|
||||||
|
|
||||||
|
@import '~fork-awesome/scss/fork-awesome.scss';
|
||||||
|
|
||||||
// Style overrides happens after bootstrap imports
|
// Style overrides happens after bootstrap imports
|
||||||
body {
|
body {
|
||||||
margin: auto;
|
margin: auto;
|
||||||
max-width: 90%;
|
max-width: 90%;
|
||||||
|
font-family: "Source Sans Pro", "Helvetica Neue", "Fira Sans", Helvetica, Arial, sans-serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fa-fw {
|
||||||
|
width: 1.25em;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue