mirror of
https://github.com/lights0123/n-link.git
synced 2025-03-08 05:49:40 +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
|
||||
- name: install app dependencies
|
||||
run: yarn
|
||||
- uses: tauri-apps/tauri-action@v0
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
with:
|
||||
npmScript: "tauri:build"
|
||||
- uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: my-artifact ${{ matrix.node-version }}
|
||||
path: src-tauri/target/release/bundle
|
||||
# - uses: tauri-apps/tauri-action@v0
|
||||
# env:
|
||||
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
# with:
|
||||
# npmScript: "tauri:build"
|
||||
# - uses: actions/upload-artifact@v2
|
||||
# with:
|
||||
# name: my-artifact ${{ matrix.node-version }}
|
||||
# path: src-tauri/target/release/bundle
|
||||
|
|
|
@ -1,7 +1,9 @@
|
|||
module.exports = {
|
||||
plugins: {
|
||||
tailwindcss: {},
|
||||
'vue-cli-plugin-tailwind/purgecss': {},
|
||||
'vue-cli-plugin-tailwind/purgecss': {
|
||||
whitelistPatternsChildren: [/^el-/],
|
||||
},
|
||||
autoprefixer: {}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<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
|
||||
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">
|
||||
<small class="tabular-nums">{{ selectedCalculator }}</small>
|
||||
<span v-if="calc && calc.info"> {{ calc.info.name }}</span>
|
||||
|
|
|
@ -32,7 +32,7 @@ module.exports = {
|
|||
},
|
||||
padding: {
|
||||
'2.5': '0.625em',
|
||||
'1.5': '0.375em',
|
||||
'3/2': '0.375em',
|
||||
},
|
||||
colors: {
|
||||
ui: {
|
||||
|
|
Loading…
Reference in a new issue