mirror of
https://github.com/oceanprotocol/commons.git
synced 2023-03-15 18:03:00 +01:00
38 lines
600 B
SCSS
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;
|
|
}
|
|
}
|