mirror of
https://github.com/lights0123/n-link.git
synced 2025-01-03 15:15:26 +00:00
Get a Windows cache
This commit is contained in:
parent
f1a83710b3
commit
d89b9db56e
18
.github/workflows/ci.yml
vendored
18
.github/workflows/ci.yml
vendored
|
@ -58,12 +58,12 @@ jobs:
|
||||||
sudo apt-get install -y webkit2gtk-4.0 squashfs-tools
|
sudo apt-get install -y webkit2gtk-4.0 squashfs-tools
|
||||||
- name: install app dependencies
|
- name: install app dependencies
|
||||||
run: yarn
|
run: yarn
|
||||||
- uses: tauri-apps/tauri-action@v0
|
# - uses: tauri-apps/tauri-action@v0
|
||||||
env:
|
# env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
with:
|
# with:
|
||||||
npmScript: "tauri:build"
|
# npmScript: "tauri:build"
|
||||||
- uses: actions/upload-artifact@v2
|
# - uses: actions/upload-artifact@v2
|
||||||
with:
|
# with:
|
||||||
name: my-artifact ${{ matrix.node-version }}
|
# name: my-artifact ${{ matrix.node-version }}
|
||||||
path: src-tauri/target/release/bundle
|
# path: src-tauri/target/release/bundle
|
||||||
|
|
|
@ -1,7 +1,9 @@
|
||||||
module.exports = {
|
module.exports = {
|
||||||
plugins: {
|
plugins: {
|
||||||
tailwindcss: {},
|
tailwindcss: {},
|
||||||
'vue-cli-plugin-tailwind/purgecss': {},
|
'vue-cli-plugin-tailwind/purgecss': {
|
||||||
|
whitelistPatternsChildren: [/^el-/],
|
||||||
|
},
|
||||||
autoprefixer: {}
|
autoprefixer: {}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
<el-popover width="239" :visible-arrow="false" popper-class="focus:outline-none dev-select-pop" v-model="active">
|
<el-popover width="239" :visible-arrow="false" popper-class="focus:outline-none dev-select-pop" v-model="active">
|
||||||
<div slot="reference" class="inline-block relative w-full focus:outline-none">
|
<div slot="reference" class="inline-block relative w-full focus:outline-none">
|
||||||
<div
|
<div
|
||||||
class="block w-full bg-white border border-gray-400 hover:border-gray-500 px-4 py-1.5 pr-8 rounded shadow leading-tight focus:outline-none focus:shadow-outline h-8 truncate">
|
class="block w-full bg-white border border-gray-400 hover:border-gray-500 px-4 py-3/2 pr-8 rounded shadow leading-tight focus:outline-none focus:shadow-outline h-8 truncate">
|
||||||
<span v-if="selectedCalculator">
|
<span v-if="selectedCalculator">
|
||||||
<small class="tabular-nums">{{ selectedCalculator }}</small>
|
<small class="tabular-nums">{{ selectedCalculator }}</small>
|
||||||
<span v-if="calc && calc.info"> {{ calc.info.name }}</span>
|
<span v-if="calc && calc.info"> {{ calc.info.name }}</span>
|
||||||
|
|
|
@ -32,7 +32,7 @@ module.exports = {
|
||||||
},
|
},
|
||||||
padding: {
|
padding: {
|
||||||
'2.5': '0.625em',
|
'2.5': '0.625em',
|
||||||
'1.5': '0.375em',
|
'3/2': '0.375em',
|
||||||
},
|
},
|
||||||
colors: {
|
colors: {
|
||||||
ui: {
|
ui: {
|
||||||
|
|
Loading…
Reference in a new issue