Add custom data survey danger button
This commit is contained in:
parent
bda6395d9d
commit
415c600ccc
|
@ -17,6 +17,11 @@
|
||||||
position: relative;
|
position: relative;
|
||||||
top: 0;
|
top: 0;
|
||||||
transition: all 0.1s ease-in-out;
|
transition: all 0.1s ease-in-out;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
top: -3px;
|
||||||
|
box-shadow: rgba(80, 80, 80, 0.15) 0px 5px 15px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.ds-btn--primary {
|
.ds-btn--primary {
|
||||||
|
@ -25,8 +30,6 @@
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
background-color: #1c44b2;
|
background-color: #1c44b2;
|
||||||
top: -3px;
|
|
||||||
box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -37,7 +40,15 @@
|
||||||
&:hover {
|
&:hover {
|
||||||
background-color: #f7f9ff;
|
background-color: #f7f9ff;
|
||||||
color: #1c44b2;
|
color: #1c44b2;
|
||||||
top: -3px;
|
}
|
||||||
box-shadow: rgba(80, 80, 80, 0.15) 0px 5px 15px;
|
}
|
||||||
|
|
||||||
|
.ds-btn--danger {
|
||||||
|
background-color: transparent;
|
||||||
|
color: #e73636;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
background-color: #f7f9ff;
|
||||||
|
color: #d33232;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,7 +3,7 @@ $form-background: #f1f5f9;
|
||||||
|
|
||||||
.ds-form {
|
.ds-form {
|
||||||
.form-group label {
|
.form-group label {
|
||||||
transition: all 0.3s ease-in-out;
|
transition: all 0.1s ease-in-out;
|
||||||
}
|
}
|
||||||
|
|
||||||
.form-group:focus-within {
|
.form-group:focus-within {
|
||||||
|
|
Loading…
Reference in New Issue