fix: login style
parent
49b7822eb9
commit
693042d2b3
|
@ -1,3 +1,4 @@
|
||||||
|
/* eslint-disable max-len */
|
||||||
// Any plugins you want to setting has to be imported
|
// Any plugins you want to setting has to be imported
|
||||||
// Detail plugins list see https://www.tinymce.com/docs/plugins/
|
// Detail plugins list see https://www.tinymce.com/docs/plugins/
|
||||||
// Custom builds see https://www.tinymce.com/download/custom-builds/
|
// Custom builds see https://www.tinymce.com/download/custom-builds/
|
||||||
|
|
|
@ -8,9 +8,9 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
span.anticon:not(.app-iconify) {
|
// span.anticon:not(.app-iconify) {
|
||||||
vertical-align: 0.125em !important;
|
// vertical-align: 0.125em !important;
|
||||||
}
|
// }
|
||||||
|
|
||||||
.ant-back-top {
|
.ant-back-top {
|
||||||
right: 20px;
|
right: 20px;
|
||||||
|
|
|
@ -1,8 +1,11 @@
|
||||||
import { defineConfig, presetAttributify, presetMini, presetUno } from 'unocss'
|
import { defineConfig, presetAttributify, presetMini, presetUno } from 'unocss'
|
||||||
|
// import presetWind from '@unocss/preset-wind'
|
||||||
import { primaryColor } from './build/config/themeConfig'
|
import { primaryColor } from './build/config/themeConfig'
|
||||||
|
|
||||||
export default defineConfig({
|
export default defineConfig({
|
||||||
presets: [presetMini({ dark: 'class' }), presetAttributify(), presetUno()],
|
presets: [presetMini({ dark: 'class' }), presetAttributify(), presetUno()],
|
||||||
|
// presets: [presetMini(), presetAttributify(), presetUno({ dark: 'class' }), presetWind()],
|
||||||
|
// transformers: [createEnterPlugin()],
|
||||||
theme: {
|
theme: {
|
||||||
extend: {
|
extend: {
|
||||||
zIndex: {
|
zIndex: {
|
||||||
|
@ -10,14 +13,14 @@ export default defineConfig({
|
||||||
},
|
},
|
||||||
colors: {
|
colors: {
|
||||||
primary: primaryColor
|
primary: primaryColor
|
||||||
},
|
|
||||||
screens: {
|
|
||||||
sm: '576px',
|
|
||||||
md: '768px',
|
|
||||||
lg: '992px',
|
|
||||||
xl: '1200px',
|
|
||||||
'2xl': '1600px'
|
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
breakpoints: {
|
||||||
|
sm: '576px',
|
||||||
|
md: '768px',
|
||||||
|
lg: '992px',
|
||||||
|
xl: '1200px',
|
||||||
|
'2xl': '1600px'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in New Issue