@dechains/cra-template-dapp
Version:
Create react app template with notification system, etherium wallet integration, MUI5 integration and other necessary packages required for base dApp development in REACTJS
33 lines • 490 B
CSS
* {
box-sizing: border-box;
padding: 0;
margin: 0;
border: 0;
}
body {
overflow-x: hidden;
}
b {
font-weight: 600;
color:inherit
}
html {
scroll-behavior: smooth;
}
.center {
display: flex;
justify-content: center;
align-items: center;
}
.centerColumn {
display: flex;
justify-content: center;
align-items: center;
flex-flow: column;
}
.flexJustify{
justify-content: center;
display:flex;
flex-wrap: wrap;
gap:20px;
}