mirror of https://github.com/wg-easy/wg-easy
Browse Source
Fix border between client blocks Add updateCharts computed Remove unnecessary parameter in refresh()pull/937/head
5 changed files with 20 additions and 46 deletions
@ -1,30 +0,0 @@ |
|||||
/** @type {import('tailwindcss').Config} */ |
|
||||
|
|
||||
'use strict'; |
|
||||
|
|
||||
module.exports = { |
|
||||
darkMode: 'selector', |
|
||||
content: ['./www/**/*.{html,js}'], |
|
||||
theme: { |
|
||||
screens: { |
|
||||
xxs: '450px', |
|
||||
xs: '576px', |
|
||||
sm: '640px', |
|
||||
md: '768px', |
|
||||
lg: '1024px', |
|
||||
xl: '1280px', |
|
||||
'2xl': '1536px', |
|
||||
}, |
|
||||
}, |
|
||||
plugins: [ |
|
||||
function addDisabledClass({ addUtilities }) { |
|
||||
const newUtilities = { |
|
||||
'.is-disabled': { |
|
||||
opacity: '0.25', |
|
||||
cursor: 'default', |
|
||||
}, |
|
||||
}; |
|
||||
addUtilities(newUtilities); |
|
||||
}, |
|
||||
], |
|
||||
}; |
|
||||
Loading…
Reference in new issue