moved basic talent properties in talent-sheet head

- a little bit better gridding of side-properties
  (still needs a rewrite)
- common SCSS mixin for input field marking
This commit is contained in:
Gesina Schwalbe 2021-01-06 15:25:55 +01:00
parent 3ba5efb8a7
commit 874692ed5c
5 changed files with 33 additions and 19 deletions

View file

@ -19,3 +19,12 @@
display: grid;
place-items: center;
}
@mixin mark-invalid-or-disabled-input {
input:invalid {
background-color: $c-invalid-input;
}
input:disabled {
background-color: transparent;
}
}