22 lines
298 B
SCSS
22 lines
298 B
SCSS
|
.broadcast-message {
|
||
|
@extend .alert-warning;
|
||
|
padding: 10px;
|
||
|
text-align: center;
|
||
|
|
||
|
div,
|
||
|
p {
|
||
|
display: inline;
|
||
|
margin: 0;
|
||
|
|
||
|
a {
|
||
|
color: inherit;
|
||
|
text-decoration: underline;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.broadcast-message-preview {
|
||
|
@extend .broadcast-message;
|
||
|
margin-bottom: 20px;
|
||
|
}
|