From a352964b9d34a8e55156417e70ba239ab571fdc3 Mon Sep 17 00:00:00 2001 From: Max Kless Date: Mon, 17 Jul 2023 17:31:28 +0200 Subject: [PATCH] fix(graph): increase dropdown indicator padding --- graph/client/tailwind.config.js | 7 ++++++- graph/ui-components/src/lib/dropdown.tsx | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/graph/client/tailwind.config.js b/graph/client/tailwind.config.js index a130bfceccd48..18a8d985ec32a 100644 --- a/graph/client/tailwind.config.js +++ b/graph/client/tailwind.config.js @@ -36,5 +36,10 @@ module.exports = { translate: ['group-hover'], }, }, - plugins: [require('@tailwindcss/typography')], + plugins: [ + require('@tailwindcss/typography'), + require('@tailwindcss/forms')({ + strategy: 'class', + }), + ], }; diff --git a/graph/ui-components/src/lib/dropdown.tsx b/graph/ui-components/src/lib/dropdown.tsx index 19d0e6fef065d..f7a1d8323dabe 100644 --- a/graph/ui-components/src/lib/dropdown.tsx +++ b/graph/ui-components/src/lib/dropdown.tsx @@ -9,7 +9,7 @@ export function Dropdown(props: DropdownProps) { const { className, children, ...rest } = props; return (