Merge branch 'crypto-donate-2' into 'develop'

Crypto donate improvements

See merge request soapbox-pub/soapbox-fe!522
This commit is contained in:
Alex Gleason 2021-06-10 19:42:18 +00:00
commit 31c0ce802b
9 changed files with 55 additions and 0 deletions

Binary file not shown.

Binary file not shown.

View file

@ -1,3 +1,7 @@
.crypto-donate {
padding-bottom: 10px;
}
.crypto-address { .crypto-address {
padding: 20px; padding: 20px;
display: flex; display: flex;
@ -67,3 +71,35 @@
padding: 10px 0; padding: 10px 0;
} }
} }
.crypto-donate-panel {
&__message {
margin: 20px 0;
margin-top: -12px;
font-size: 14px;
}
.site-wallet {
display: block;
padding-bottom: 10px;
}
.crypto-address {
padding: 0;
margin: 20px 0;
&:first-child {
margin-top: 0;
}
&:last-child {
margin-bottom: 0;
}
}
&--has-more {
.site-wallet {
padding-bottom: 0;
}
}
}

View file

@ -129,4 +129,23 @@
} }
} }
} }
&__expand-btn {
display: block;
width: 100%;
height: 100%;
max-height: 46px;
position: relative;
border-top: 1px solid;
border-color: var(--brand-color--faint);
transition: max-height 150ms ease;
overflow: hidden;
opacity: 1;
text-align: center;
line-height: 46px;
font-size: 14px;
cursor: pointer;
color: var(--primary-text-color);
text-decoration: none;
}
} }