commons/client/src/routes/Publish/Files/Ipfs/Status.module.scss

37 lines
603 B
SCSS

@import '../../../../styles/variables';
.message {
font-size: $font-size-small;
margin-top: $spacer / 2;
color: $brand-grey-light;
&:before {
content: '';
width: 0.5rem;
height: 0.5rem;
display: inline-block;
background: $yellow;
border-radius: 50%;
margin-right: $spacer / 6;
margin-bottom: 0.1rem;
}
}
.success {
composes: message;
&:before {
background: $green;
}
}
.error {
composes: message;
color: $red;
&:before {
border-radius: 0;
background: $red;
}
}