mirror of
https://github.com/kremalicious/blog.git
synced 2025-02-14 21:10:25 +01:00
78 lines
1.4 KiB
CSS
78 lines
1.4 KiB
CSS
.web3 {
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
max-width: 25rem;
|
|
width: 100%;
|
|
}
|
|
|
|
.rainbowkit button > div {
|
|
padding-left: 0 !important;
|
|
}
|
|
|
|
/* hide the account icon, and hope nothing else */
|
|
.rainbowkit button [aria-hidden] {
|
|
display: none;
|
|
}
|
|
|
|
.rainbowkit [aria-label='Chain Selector'],
|
|
.rainbowkit [data-testid='rk-account-button'] div {
|
|
font-weight: var(--font-weight-base);
|
|
}
|
|
|
|
/* hide the network icon, and hope nothing else */
|
|
.rainbowkit [aria-label='Chain Selector'] [role='img'] {
|
|
display: none;
|
|
}
|
|
|
|
.rainbowkit > div:first-child {
|
|
display: flex;
|
|
flex-direction: row-reverse;
|
|
justify-content: space-between;
|
|
font-size: var(--font-size-small);
|
|
}
|
|
|
|
/* connect button */
|
|
.rainbowkit > div:first-child > button:only-child {
|
|
margin-right: auto;
|
|
}
|
|
|
|
.disclaimer {
|
|
font-size: var(--font-size-mini);
|
|
margin-top: calc(var(--spacer) / 1.5);
|
|
margin-bottom: calc(var(--spacer) / 6);
|
|
}
|
|
|
|
.message {
|
|
font-size: var(--font-size-small);
|
|
position: relative;
|
|
}
|
|
|
|
.message::after {
|
|
overflow: hidden;
|
|
display: inline-block;
|
|
vertical-align: bottom;
|
|
animation: ellipsis steps(4, end) 1s infinite;
|
|
|
|
/* ascii code for the ellipsis character */
|
|
content: '\2026';
|
|
width: 0;
|
|
position: absolute;
|
|
left: 100%;
|
|
bottom: 0;
|
|
}
|
|
|
|
.success {
|
|
composes: message;
|
|
color: green;
|
|
}
|
|
|
|
.success::after {
|
|
display: none;
|
|
}
|
|
|
|
@keyframes ellipsis {
|
|
to {
|
|
width: 0.75rem;
|
|
}
|
|
}
|