resmic
Version:
Decentralise payment infrastructure. Integrate crypto payment facilities without any hassle!
45 lines (37 loc) • 665 B
CSS
/* Styles for the Popup Component */
.popup-container {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
display: flex;
justify-content: center;
align-items: center;
font-size: 20px;
}
.close{
position: absolute;
top: .1rem;
right: .6rem;
cursor: pointer;
font-size: 1.2rem;
}
.popup-content{
/* height: fit-content; */
box-sizing: border-box;
display: flex;
flex-direction: column;
border-radius: 10px;
width: 22rem;
background-color: #fff;
}
.inputHeading {
font-weight: 500;
font-size: 0.9rem;
color: rgb(79, 79, 79);
}
.mainDivResmic {
font-size: 20px;
}