bigbuffet-rw/app/styles/components/crypto-donate.scss

70 lines
1,022 B
SCSS
Raw Normal View History

.crypto-address {
padding: 20px;
2021-06-09 15:55:28 -07:00
display: flex;
flex-direction: column;
&__head {
display: flex;
align-items: center;
margin-bottom: 6px;
}
&__title {
font-weight: bold;
}
&__icon {
display: flex;
align-items: flex-start;
justify-content: center;
width: 24px;
margin-right: 10px;
img {
width: 100%;
}
}
2021-06-09 16:28:54 -07:00
&__actions {
margin-left: auto;
a {
color: var(--primary-text-color--faint);
2021-06-09 17:28:16 -07:00
margin-left: 10px;
2021-06-09 16:28:54 -07:00
}
}
2021-06-09 15:55:28 -07:00
&__note {
margin-bottom: 10px;
}
2021-06-09 17:28:16 -07:00
&__qrcode {
margin-bottom: 12px;
padding: 10px;
display: flex;
align-items: center;
justify-content: center;
}
2021-06-09 15:55:28 -07:00
&__address {
margin-top: auto;
}
}
.site-wallet {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
2021-06-09 17:28:16 -07:00
.crypto-donate-modal {
background: var(--foreground-color);
border-radius: 8px;
padding-bottom: 13px;
}
.profile-info-panel-content__fields {
.crypto-address {
padding: 10px 0;
}
}