mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
fix font color on dropdown buttons
This commit is contained in:
parent
092ec32e16
commit
e64c118df2
2 changed files with 6 additions and 0 deletions
5
src/FilterLists.Web.V2/src/shared/SubscribeButton.css
Normal file
5
src/FilterLists.Web.V2/src/shared/SubscribeButton.css
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
/* fix font color on dropdown buttons */
|
||||
.ant-dropdown-menu-item > a,
|
||||
.ant-dropdown-menu-submenu-title > a {
|
||||
color: #fff;
|
||||
}
|
||||
|
|
@ -1,6 +1,7 @@
|
|||
import { Button, Dropdown, Menu } from 'antd';
|
||||
import { ButtonProps, ButtonType } from "antd/lib/button";
|
||||
import * as React from "react";
|
||||
import './SubscribeButton.css';
|
||||
|
||||
//TODO: import DropdownButtonType from antd rather than redefining if they export the type
|
||||
//import { DropdownButtonType } from "antd/lib/dropdown";
|
||||
|
|
|
|||
Loading…
Reference in a new issue