25 lines
457 B
HTML
25 lines
457 B
HTML
<div class="webshellAlert">
|
|
<style>
|
|
#webshellAlert {
|
|
border-radius: 0px;
|
|
border: 2px solid {{severity_color}};
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: fit-content;
|
|
height: fit-content;
|
|
}
|
|
|
|
button {
|
|
border-radius: 0px;
|
|
border: 2px solid #86e9d5;
|
|
}
|
|
</style>
|
|
|
|
<h1>{{title}}</h1>
|
|
<p>{{description}}</p>
|
|
|
|
<button>ok</button>
|
|
<button>ok</button>
|
|
</div>
|