Files
notifications-admin/app/assets/stylesheets/components/broadcast-message.scss
T

38 lines
986 B
SCSS
Raw Normal View History

.broadcast-message {
2020-07-08 17:24:08 +01:00
&-wrapper {
position: relative;
width: 100%;
max-width: 464px;
box-sizing: border-box;
padding: govuk-spacing(9) govuk-spacing(3) govuk-spacing(3) govuk-spacing(3);
background: $panel-colour;
box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.05);
border-radius: 5px;
white-space: normal;
margin: govuk-spacing(2) 0 govuk-spacing(4) 0;
clear: both;
word-wrap: break-word;
}
2020-07-08 17:24:08 +01:00
&-heading {
2020-07-08 17:24:08 +01:00
display: block;
position: absolute;
2020-10-02 13:49:44 +01:00
top: 0;
2020-07-08 17:24:08 +01:00
left: 0;
2020-10-02 13:49:44 +01:00
padding: govuk-spacing(2) + 1px govuk-spacing(3) (govuk-spacing(2) - 1px) 46px;
2020-07-08 17:24:08 +01:00
width: 100%;
box-sizing: border-box;
font-weight: bold;
2020-10-02 13:49:44 +01:00
background: $grey-1 file-url('exclamation.svg');
color: $white;
background-size: 22px;
2020-07-08 17:24:08 +01:00
background-repeat: no-repeat;
2020-10-02 13:49:44 +01:00
background-position: govuk-spacing(3) 11px;
border-top-right-radius: 5px;
border-top-left-radius: 5px;
box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.1);
2020-07-08 17:24:08 +01:00
}
}