Get a Windows cache

This commit is contained in:
lights0123 2020-09-26 20:48:39 -04:00
parent f1a83710b3
commit d89b9db56e
No known key found for this signature in database
GPG key ID: 28F315322E37972F
4 changed files with 14 additions and 12 deletions

View file

@ -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

View file

@ -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: {}
} }
} }

View file

@ -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>

View file

@ -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: {