mirror of https://github.com/ColorlibHQ/AdminLTE
26 lines
512 B
Plaintext
Executable File
26 lines
512 B
Plaintext
Executable File
/*
|
|
Component: alert
|
|
------------------------
|
|
*/
|
|
|
|
.alert {
|
|
//Add padding to allow the icon to appear
|
|
padding-left: 30px;
|
|
margin-left: 15px;
|
|
position: relative;
|
|
//Make icons float to the left corner
|
|
> .fa, > .glyphicon {
|
|
position: absolute;
|
|
left: -15px;
|
|
top: -15px;
|
|
width: 35px;
|
|
height: 35px;
|
|
.border-radius(50%);
|
|
line-height: 35px;
|
|
text-align: center;
|
|
background: inherit;
|
|
border: inherit;
|
|
}
|
|
|
|
}
|