mirror of
https://github.com/BewlyBewly/BewlyBewly.git
synced 2025-04-14 13:15:29 +00:00
chore: bug fixes
This commit is contained in:
@@ -23,7 +23,7 @@ onMounted(() => {
|
||||
<span
|
||||
inline-block w="$b-button-width" h="$b-button-height" bg="$bew-fill-1" rounded="[calc(var(--b-button-height)/2)]"
|
||||
relative border="size-$b-border-width color-$bew-border-color"
|
||||
after:content-none after:inline-block after:bg="white" after:rounded="[calc(var(--b-button-height)/2)]"
|
||||
after:content-empty after:inline-block after:bg-white after:rounded="[calc(var(--b-button-height)/2)]"
|
||||
after:w="[calc(var(--b-button-height)-var(--b-border-width))]" after:h="[calc(var(--b-button-height)-var(--b-border-width))]"
|
||||
after:border="size-$b-border-width color-$bew-border-color"
|
||||
after:pos="absolute top-[calc(0px-var(--b-border-width)/2)]"
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
import type { Ref } from 'vue'
|
||||
|
||||
interface Props {
|
||||
min: number
|
||||
max: number
|
||||
min?: number
|
||||
max?: number
|
||||
value: number
|
||||
label: string
|
||||
}
|
||||
|
||||
@@ -1,11 +1,12 @@
|
||||
import { defineConfig } from 'unocss/vite'
|
||||
import { presetAttributify, presetIcons, presetUno, transformerDirectives } from 'unocss'
|
||||
import { presetAttributify, presetIcons, presetTypography, presetUno, transformerDirectives } from 'unocss'
|
||||
|
||||
export default defineConfig({
|
||||
presets: [
|
||||
presetUno(),
|
||||
presetAttributify(),
|
||||
presetIcons(),
|
||||
presetTypography(),
|
||||
],
|
||||
transformers: [
|
||||
transformerDirectives(),
|
||||
|
||||
Reference in New Issue
Block a user