add category btns

This commit is contained in:
msosic97
2022-03-14 12:14:03 +01:00
parent 5d1e7ab14f
commit 992cb1756a
5 changed files with 26 additions and 7 deletions

View File

@@ -1,11 +1,10 @@
import './button.css'
var title = "DALJE";
const StandardBtn = (props) => {
return (
<div className='standard-btn'>
<button className='standardBtn'>{title}</button>
<button className='standardBtn'>{props.title}</button>
</div>
)
}

View File

@@ -1,9 +1,10 @@
.standard-btn {
text-align: center;
margin-bottom: 20px;
}
.standardBtn {
width: fit-content;
width: 150px;
background-color: #02ADBA;
font-size: 15px;
padding: 7px 20px 7px 20px;