From 2845b575d39a18c6c887f6e001af07653b7f104b Mon Sep 17 00:00:00 2001 From: vthinkxie Date: Tue, 16 Apr 2019 19:41:00 +0800 Subject: [PATCH] fix(module:dropdown): fix dropdown ul list-style (#3284) close #3268 --- components/core/style/index.less | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/components/core/style/index.less b/components/core/style/index.less index 374e212d28c..06938f0a2be 100644 --- a/components/core/style/index.less +++ b/components/core/style/index.less @@ -66,6 +66,13 @@ } } +.ant-dropdown-menu { + & > ul { + list-style: none; + margin: 0; + padding: 0; + } +} @table-prefix-cls: ~'@{ant-prefix}-table'; @table-td-cls: ~'@{table-prefix-cls}-td';