Files
mempool/frontend/src/app/components/faucet/faucet.component.scss

53 lines
790 B
SCSS
Raw Normal View History

2024-05-16 07:35:55 +00:00
.formGroup {
width: 100%;
}
.input-group {
display: flex;
flex-wrap: wrap;
align-items: stretch;
justify-content: flex-end;
row-gap: 0.5rem;
2024-05-16 21:10:15 +00:00
gap: 0.5rem;
2024-05-16 07:35:55 +00:00
.form-control {
2024-05-16 21:10:15 +00:00
min-width: 160px;
flex-grow: 100;
2024-05-16 07:35:55 +00:00
}
.button-group {
display: flex;
align-items: stretch;
}
2024-05-16 21:10:15 +00:00
.submit-button, .button-group, .button-group .btn {
flex-grow: 1;
}
.submit-button:disabled {
2024-05-21 00:56:24 +00:00
cursor: not-allowed;
}
2024-05-16 21:10:15 +00:00
2024-05-16 07:35:55 +00:00
#satoshis::after {
content: 'sats';
position: absolute;
right: 0.5em;
top: 0;
bottom: 0;
}
}
.faucet-container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
width: 100%;
max-width: 800px;
margin: auto;
}
.invalid {
border-width: 1px;
border-color: var(--red);
}