A Metamask fork with Infura removed and default networks editable
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.
 
 
 
 
 
ciphermask/ui/app/css/itcss/components/sender-to-recipient.scss

58 lines
1.0 KiB

.sender-to-recipient {
&__container {
width: 100%;
display: flex;
flex-direction: row;
justify-content: center;
border-bottom: 1px solid $geyser;
position: relative;
}
&__sender,
&__recipient {
display: flex;
flex-direction: row;
align-items: center;
flex: 1;
padding: 10px 20px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
&__sender {
padding-right: 30px;
}
&__recipient {
border-left: 1px solid $geyser;
padding-left: 30px;
}
&__arrow-container {
position: absolute;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}
&__arrow-circle {
background: $white;
padding: 5px;
border: 1px solid $geyser;
border-radius: 20px;
height: 30px;
width: 30px;
display: flex;
justify-content: center;
align-items: center;
}
&__name {
padding-left: 5px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
}