Skip to content
Snippets Groups Projects
Commit 4b40cc33 authored by Allen Gilliland's avatar Allen Gilliland
Browse files

create button coloring for `warning`

parent 93457f80
No related branches found
No related tags found
No related merge requests found
......@@ -5,6 +5,8 @@
--primary-button-border-color: #509EE3;
--primary-button-bg-color: #509EE3;
--warning-button-border-color: #E35050;
--warning-button-bg-color: #E35050;
--selected-button-bg-color: #F4F6F8;
--danger-button-bg-color: #EF8C8C;
......@@ -68,6 +70,18 @@
background-color: color(var(--primary-button-bg-color) shade(10%));
}
.Button--warning {
color: #fff;
background: var(--warning-button-bg-color);
border: 1px solid var(--warning-button-border-color);
}
.Button--warning:hover {
color: #fff;
border-color: color(var(--warning-button-border-color) shade(10%));
background-color: color(var(--warning-button-bg-color) shade(10%));
}
.Button--cancel {
border-radius: 99px;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment