Add donation module

This commit is contained in:
Kevin Kandlbinder 2020-12-23 17:45:09 +01:00
parent 45ed006faf
commit bcfc8817ec
12 changed files with 198 additions and 35 deletions

View file

@ -0,0 +1,41 @@
@import "../variables";
@import "../mixins";
.priceAmount {
display: flex;
width: 150px;
margin: 20px auto;
border: thin solid rgba(0,0,0,.25);
border-radius: 5px;
overflow: hidden;
line-height: 40px;
input {
flex-grow: 1;
border: none;
padding-left: 10px;
width: 1px;
border-right: thin solid rgba(0,0,0,.25);
}
div {
width: 20px;
text-align: center;
}
}
.donateButton {
@include button;
}
.sronly {
border: 0;
clip: rect(0,0,0,0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
}