design fix
This commit is contained in:
+6
-2
@@ -160,11 +160,13 @@ body {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.dropdown-custom {
|
.dropdown-custom {
|
||||||
width: 20%;
|
width: 150px;
|
||||||
background-color: black;
|
background-color: black;
|
||||||
color: white;
|
color: white;
|
||||||
border: none;
|
border: none;
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
|
border-radius: 20px;
|
||||||
|
margin: 10px;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
@@ -177,8 +179,10 @@ body {
|
|||||||
width: 150px;
|
width: 150px;
|
||||||
background-color: black;
|
background-color: black;
|
||||||
color: white;
|
color: white;
|
||||||
border: none;
|
border: 2px solid #5353535c;
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
|
border-radius: 20px;
|
||||||
|
margin: 10px;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -64,6 +64,7 @@ function walltimeStart() {
|
|||||||
|
|
||||||
export function isInputValidRegex(obj: string | undefined, subj: string | undefined, bounds: string | undefined, vars: string | undefined): boolean {
|
export function isInputValidRegex(obj: string | undefined, subj: string | undefined, bounds: string | undefined, vars: string | undefined): boolean {
|
||||||
customLog("input_checks_start");
|
customLog("input_checks_start");
|
||||||
|
customLog("");
|
||||||
|
|
||||||
// standard case: input is undefined - invalid
|
// standard case: input is undefined - invalid
|
||||||
if (obj === undefined || obj === null || subj === undefined || subj === null || bounds === undefined || bounds === null || vars === undefined || vars === null) {
|
if (obj === undefined || obj === null || subj === undefined || subj === null || bounds === undefined || bounds === null || vars === undefined || vars === null) {
|
||||||
|
|||||||
Reference in New Issue
Block a user