Remove class 'button' from Button component (https://github.com/woocommerce/woocommerce-blocks/pull/2494)
This commit is contained in:
parent
199231f94a
commit
1fea56d8cd
|
@ -15,7 +15,6 @@ import './style.scss';
|
||||||
*/
|
*/
|
||||||
const Button = ( { className, showSpinner = false, children, ...props } ) => {
|
const Button = ( { className, showSpinner = false, children, ...props } ) => {
|
||||||
const buttonClassName = classNames(
|
const buttonClassName = classNames(
|
||||||
'button',
|
|
||||||
'wc-block-components-button',
|
'wc-block-components-button',
|
||||||
className,
|
className,
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
.button.wc-block-components-button:not(.is-link) {
|
.wc-block-components-button:not(.is-link) {
|
||||||
align-items: center;
|
align-items: center;
|
||||||
background-color: $black;
|
background-color: $black;
|
||||||
color: $white;
|
color: $white;
|
||||||
|
|
Loading…
Reference in New Issue