2020-08-18 14:18:56 +02:00
|
|
|
.actionable-message {
|
|
|
|
background: $Blue-000;
|
|
|
|
border: 1px solid $Blue-200;
|
|
|
|
border-radius: 8px;
|
2020-08-18 21:51:00 +02:00
|
|
|
padding: 16px;
|
2020-08-18 14:18:56 +02:00
|
|
|
margin-top: 18px;
|
|
|
|
display: flex;
|
|
|
|
flex-flow: column;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
@include H7;
|
|
|
|
|
|
|
|
&__message {
|
|
|
|
color: $Blue-600;
|
2020-08-18 21:51:00 +02:00
|
|
|
text-align: center;
|
2020-08-18 14:18:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&__actions {
|
|
|
|
display: flex;
|
|
|
|
width: 80%;
|
|
|
|
justify-content: space-evenly;
|
|
|
|
align-items: center;
|
|
|
|
margin-top: 10px;
|
|
|
|
color: $Blue-600;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__action {
|
|
|
|
font-weight: bold;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2020-08-18 20:13:36 +02:00
|
|
|
&--warning {
|
|
|
|
background: $Yellow-100;
|
|
|
|
border: 1px solid $Yellow-500;
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
.actionable-message__message,
|
|
|
|
.actionable-message__action {
|
|
|
|
color: $Black-100;
|
|
|
|
}
|
2020-08-18 14:18:56 +02:00
|
|
|
|
2020-08-18 20:13:36 +02:00
|
|
|
.actionable-message__action--secondary {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
2020-08-18 14:18:56 +02:00
|
|
|
}
|
2020-08-18 21:51:00 +02:00
|
|
|
|
2020-10-06 20:28:38 +02:00
|
|
|
&--danger {
|
|
|
|
background: $Red-100;
|
|
|
|
border: 1px solid $Red-500;
|
|
|
|
justify-content: flex-start;
|
|
|
|
|
|
|
|
.actionable-message__message {
|
|
|
|
color: $Red-500;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-18 21:51:00 +02:00
|
|
|
&--left-aligned {
|
|
|
|
.actionable-message__message,
|
|
|
|
.actionable-message__actions {
|
|
|
|
justify-content: flex-start;
|
|
|
|
text-align: left;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
2020-08-18 14:18:56 +02:00
|
|
|
}
|