commons/client/src/routes/Publish/StepRegisterContent.module....

38 lines
600 B
SCSS

@import '../../styles/variables';
.message {
margin-bottom: $spacer;
}
.success {
composes: message;
background: $green;
padding: $spacer / 1.5;
border-radius: $border-radius;
color: $brand-white;
font-weight: $font-weight-bold;
text-align: center;
&,
a,
button {
color: $brand-white;
}
a,
button {
transition: color 0.2s ease-out;
&:hover,
&:focus {
color: $brand-pink;
transform: none;
}
}
a {
display: inline-block;
margin-right: $spacer;
}
}