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.
42 lines
706 B
42 lines
706 B
4 years ago
|
.actionable-message {
|
||
|
background: $Blue-000;
|
||
|
border: 1px solid $Blue-200;
|
||
|
border-radius: 8px;
|
||
|
padding: 8px 28px 8px 28px;
|
||
|
margin-top: 18px;
|
||
|
display: flex;
|
||
|
flex-flow: column;
|
||
|
align-items: center;
|
||
|
|
||
|
@include H7;
|
||
|
|
||
|
&__message {
|
||
|
color: $Blue-600;
|
||
|
}
|
||
|
|
||
|
&__actions {
|
||
|
display: flex;
|
||
|
width: 80%;
|
||
|
justify-content: space-evenly;
|
||
|
align-items: center;
|
||
|
margin-top: 10px;
|
||
|
color: $Blue-600;
|
||
|
}
|
||
|
|
||
|
&__action {
|
||
|
font-weight: bold;
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.actionable-message--warning {
|
||
|
background: $Yellow-100;
|
||
|
border: 1px solid $Yellow-500;
|
||
|
justify-content: center;
|
||
|
|
||
|
.actionable-message__message,
|
||
|
.actionable-message__action {
|
||
|
color: $Black-100;
|
||
|
}
|
||
|
}
|