pleroma/app/styles/components/crypto-donate.scss

67 lines
1,014 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;
padding-left: 10px;
a {
color: var(--primary-text-color--faint);
}
}
2021-06-09 15:55:28 -07:00
&__note {
margin-bottom: 10px;
}
&__address {
margin-top: auto;
2021-06-09 16:28:54 -07:00
display: flex;
2021-06-09 16:53:13 -07:00
align-items: center;
justify-content: center;
2021-06-09 16:28:54 -07:00
input {
flex: 1;
2021-06-09 16:53:13 -07:00
font-size: 14px !important;
border-radius: 4px 0 0 4px !important;
}
button {
width: auto;
font-size: 14px;
margin: 0;
padding-bottom: 9px;
border-radius: 0 4px 4px 0;
2021-06-09 16:28:54 -07:00
}
2021-06-09 15:55:28 -07:00
}
}
.site-wallet {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}