This commit is contained in:
Bilal
2024-03-27 22:25:55 +01:00
parent 7a60899e26
commit 66d5b3d533
7 changed files with 2690 additions and 12 deletions

View File

@@ -0,0 +1,11 @@
import "./AddBtn.scss";
export default function AddBtn({ handle }) {
return (
<div className="add-btn-container">
<button onClick={handle} className="add-btn">
+
</button>
</div>
);
}

View File

@@ -0,0 +1,19 @@
.add-btn-container {
display: flex;
position: absolute;
bottom: 20px;
right: 20px;
width: 45px;
height: 45px;
.add-btn {
width: 100%;
height: 100%;
border-radius: 50px;
border: none;
background: rgb(123, 106, 156);
color: white;
font-weight: bold;
font-size: 15px;
}
}