27 lines
333 B
SCSS
27 lines
333 B
SCSS
.flashs{
|
|
background: #F9F1E4;
|
|
color: #333f48;
|
|
padding: 30px 20px;
|
|
font-size: 14px;
|
|
position: relative;
|
|
|
|
|
|
.notice, .error, .alert{
|
|
margin:0;
|
|
padding:0;
|
|
max-width:1000px;
|
|
margin:auto;
|
|
}
|
|
.error{
|
|
color:red;
|
|
}
|
|
|
|
.remove{
|
|
position:absolute;
|
|
top:6px;
|
|
right:8px;
|
|
cursor:pointer;
|
|
}
|
|
|
|
}
|