mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
match single Subscribe button with dropdown width
This commit is contained in:
parent
256c822ebc
commit
ea666720e5
2 changed files with 5 additions and 1 deletions
|
|
@ -3,3 +3,7 @@
|
|||
.ant-dropdown-menu-submenu-title > a {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.ant-btn.single {
|
||||
width: 106.81px;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@ export const SubscribeButton = (props: Props): JSX.Element | null =>
|
|||
? <SubscribeButtonDropdown {...props} />
|
||||
: props.viewUrl
|
||||
? <div>
|
||||
<Button size="small" {...buildButtonProps(props.name, props.viewUrl)}>Subscribe</Button>
|
||||
<Button className={"single"} size="small" {...buildButtonProps(props.name, props.viewUrl)}>Subscribe</Button>
|
||||
</div>
|
||||
: null;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue