jam/src/components/Receive.module.css

99 lines
1.5 KiB
CSS

.receive hr {
border-color: rgba(222, 222, 222, 1);
opacity: 100%;
}
:root[data-theme='dark'] .receive hr {
border-color: var(--bs-gray-800);
opacity: 100%;
}
.receive button {
padding: 0.25rem 1rem;
font-weight: 500;
border-color: rgba(222, 222, 222, 1);
}
.receive form input {
height: 3.5rem;
width: 100%;
}
.receive select {
height: 3.5rem;
width: 100%;
}
.receive-placeholder-container {
height: 1.5rem;
text-align: center;
margin-bottom: 1rem;
}
.receive-placeholder {
height: 1.5rem;
}
.inputGroupText {
width: 5ch;
display: inline-flex;
justify-content: center;
align-items: center;
font-size: 1.2rem;
}
.qr-container {
display: flex;
justify-content: center;
min-height: 16.25rem;
}
.receive-placeholder-qr-container {
width: 16.25rem;
}
.receive-placeholder-qr {
width: 13.75rem;
height: 13.75rem;
margin: 1.25rem;
}
:root[data-theme='dark'] .receive-placeholder-qr {
width: 16.25rem;
height: 16.25rem;
margin: 0;
}
.address {
font-size: 0.75rem;
padding: 1rem 0 1rem;
}
.jarsContainer {
display: flex;
flex-wrap: wrap;
flex-direction: row;
justify-content: center;
align-items: center;
gap: 2rem;
color: var(--bs-body-color);
margin-bottom: 3rem;
}
.jarsPlaceholder {
width: 100%;
height: 8.5rem;
margin-bottom: 2rem;
}
@media only screen and (min-width: 768px) {
.address {
font-size: var(--bs-body-font-size);
padding: 0;
}
.jarsContainer {
gap: 1.5rem;
flex-wrap: nowrap;
justify-content: space-between;
}
}