forked from AkkomaGang/akkoma-fe
Add fallback color rule.
This commit is contained in:
parent
c03cc3ae83
commit
636be3b681
1 changed files with 3 additions and 1 deletions
|
@ -100,6 +100,7 @@
|
|||
<script src="./registration.js"></script>
|
||||
<style lang="scss">
|
||||
@import '../../_variables.scss';
|
||||
$validations-cRed: #f04124;
|
||||
|
||||
.registration-form {
|
||||
display: flex;
|
||||
|
@ -157,7 +158,8 @@
|
|||
}
|
||||
|
||||
.form-group--error .form--label {
|
||||
color: var(--cRed, #f04124);
|
||||
color: var(--cRed, $validations-cRed);
|
||||
color: $validations-cRed;
|
||||
}
|
||||
|
||||
.form-error {
|
||||
|
|
Loading…
Reference in a new issue