From eb6fbd9c4ae9efcc5c608f4e26de857409d219b6 Mon Sep 17 00:00:00 2001 From: Benjamin Canac Date: Sat, 2 Jul 2022 00:38:29 +0200 Subject: [PATCH] fix(SelectCustom): add missing `text-sm` class --- src/runtime/presets/default.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/presets/default.ts b/src/runtime/presets/default.ts index c9ce4ff4..24e424c1 100644 --- a/src/runtime/presets/default.ts +++ b/src/runtime/presets/default.ts @@ -193,7 +193,7 @@ export default (variantColors: string[]) => { container: 'absolute z-10 mt-1 w-full py-1 max-h-60 overflow-auto', base: 'u-bg-white shadow-lg rounded-md ring-1 u-ring-gray-200 focus:outline-none', option: { - base: 'cursor-default select-none relative py-2 pl-4 pr-10', + base: 'cursor-default select-none relative py-2 pl-4 pr-10 text-sm', active: 'text-white bg-primary-600', inactive: 'u-text-gray-900', disabled: 'cursor-not-allowed opacity-50',