Commit 2b8929ce authored by Paul Legoût's avatar Paul Legoût
Browse files

slight updates

parent 995f6bfb
1 merge request!16slight updates
Showing with 3 additions and 14 deletions
+3 -14
......@@ -188,19 +188,7 @@ export class DataEntryComponent implements OnInit {
* Empty inputs
*/
public emptyInputs() {
const inputs = document.querySelectorAll("input");
for (let i = 0; i < inputs.length; i++) {
if (inputs[i]) {
inputs[i].value = '';
}
}
const sel = document.querySelectorAll("mat-select");
for (let i = 0; i < sel.length; i++) {
if (sel[i]) {
sel[i].textContent = '';
}
}
location.reload();
}
......
......@@ -2,5 +2,6 @@
/* You can add global styles to this file, and also import other style files */
html, body { height: 100%; }
html, body { height: 100%;
min-width: 900px;}
body { margin: auto auto; font-family: Roboto, "Helvetica Neue", sans-serif; width: 75%;}
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment