mirror of
https://github.com/mickael-kerjean/filestash.git
synced 2025-11-02 11:57:04 +08:00
26 lines
460 B
SCSS
26 lines
460 B
SCSS
.alert {
|
|
background: var(--bg-color);
|
|
border-radius: 5px;
|
|
padding: 20px;
|
|
margin-top: 20px;
|
|
margin-bottom: 20px;
|
|
border: 1px solid rgba(0,0,0,0.05);
|
|
|
|
ol, ul {
|
|
margin: 5px 0;
|
|
padding: 0 20px;
|
|
}
|
|
|
|
&.success{
|
|
background: var(--success);
|
|
}
|
|
|
|
img{
|
|
max-width: 100%;
|
|
border-radius: 5px;
|
|
border: 10px solid white;
|
|
box-sizing: border-box;
|
|
margin-top: 5px;
|
|
}
|
|
}
|