Fixing styling with modal text
This commit is contained in:
parent
36a8b706f0
commit
9b92cfacec
2 changed files with 4 additions and 3 deletions
|
|
@ -46,7 +46,8 @@ export default {
|
||||||
const fieldOptions = {
|
const fieldOptions = {
|
||||||
type: inputType,
|
type: inputType,
|
||||||
validateOnValueUpdate: false,
|
validateOnValueUpdate: false,
|
||||||
validateOnMount: false
|
validateOnMount: false,
|
||||||
|
validateOnBlur: false
|
||||||
};
|
};
|
||||||
|
|
||||||
const { handleChange, meta, errors }
|
const { handleChange, meta, errors }
|
||||||
|
|
|
||||||
|
|
@ -65,12 +65,12 @@ body {
|
||||||
}
|
}
|
||||||
|
|
||||||
.modal-text {
|
.modal-text {
|
||||||
display: inline;
|
display: contents !important;
|
||||||
color: $blue;
|
color: $blue;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
border: none;
|
border: none;
|
||||||
background-color: transparent;
|
background-color: inherit;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
text-underline-offset: 5px;
|
text-underline-offset: 5px;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue