mirror of
https://github.com/nothingworksinc/ticketbeast.git
synced 2026-02-01 22:47:36 +00:00
17 lines
383 B
Plaintext
17 lines
383 B
Plaintext
@alert-x-padding: @spacer-5;
|
|
@alert-y-padding: @spacer-4;
|
|
@alert-border-radius: @border-radius;
|
|
|
|
.alert {
|
|
padding: @alert-y-padding @alert-x-padding;
|
|
background-color: #fff;
|
|
border-width: 1px;
|
|
border-style: solid;
|
|
border-radius: @alert-border-radius;
|
|
}
|
|
|
|
.alert-danger {
|
|
background-color: hsl(hue(@color-danger), 100%, 99%);
|
|
border-color: @color-danger;
|
|
}
|