You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

76 lines
1.1 KiB

@import 'styles/variables.scss';
.wallet {
background: var(--lightestBackground);
color: var(--primaryText);
height: 200px;
padding: 20px 40px;
}
.user {
position: relative;
cursor: pointer;
transition: all 0.25s;
.aliasText:hover {
opacity: 0.5;
}
}
.qrCode {
cursor: pointer;
svg {
g {
fill: var(--gray);
}
}
}
.notificationBox {
text-align: right;
font-size: 12px;
section {
display: inline-block;
vertical-align: middle;
transition: all 0.25s;
}
.spinnerContainer {
position: relative;
display: inline;
}
.spinner {
height: 30px;
width: 30px;
border: 1px solid rgba(235, 184, 100, 0.1);
border-left-color: rgba(235, 184, 100, 0.4);
border-radius: 999px;
animation: animation-rotate 1000ms linear infinite;
}
.timeout {
position: absolute;
top: 20%;
left: 0;
font-size: 10px;
width: 32px;
text-align: center;
}
.icon {
margin-right: 5px;
}
}
@keyframes animation-rotate {
100% {
transform: rotate(360deg);
}
}
.txLink {
text-decoration: underline;
cursor: pointer;
}