Fixed
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
import React from "react";
|
||||
import styles from "./styles.module.css";
|
||||
const SecondaryButton = (props) => {
|
||||
return (
|
||||
<button className={styles.button} {...props}>
|
||||
<p>{props.text}</p>
|
||||
</button>
|
||||
);
|
||||
};
|
||||
|
||||
export default SecondaryButton;
|
||||
@@ -0,0 +1,25 @@
|
||||
.button {
|
||||
display: flex;
|
||||
height: 36px;
|
||||
padding: 9px 12px;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
border-radius: 6px;
|
||||
border: 0.5px solid #4e537e;
|
||||
cursor: pointer;
|
||||
color: #d2d3e1;
|
||||
font-size: 16px;
|
||||
|
||||
font-style: normal;
|
||||
font-weight: 500;
|
||||
line-height: normal;
|
||||
letter-spacing: 0.16px;
|
||||
cursor: pointer;
|
||||
background: transparent;
|
||||
}
|
||||
.button:hover {
|
||||
border-radius: 6px;
|
||||
border: 1px solid #8e98e7;
|
||||
background: linear-gradient(180deg, #8e98e6 0%, #4d537e 100%);
|
||||
}
|
||||
Reference in New Issue
Block a user