Bug In Validation Fixed

This commit is contained in:
brausjonas
2023-06-09 16:44:53 +02:00
parent 7b2602172e
commit b1da16aed5
4 changed files with 21545 additions and 1 deletions
@@ -353,6 +353,7 @@ export default function CalenderView(p) {
currentYear = 2000; currentYear = 2000;
selectedElement = null; selectedElement = null;
grabbedDown = false; grabbedDown = false;
errorState = [ErrorType.Okay, ErrorType.Okay, ErrorType.Okay, ErrorType.Okay, ErrorType.Okay, ErrorType.Okay]
let url = baseURL + "/semester/id?sessionid=" + localStorage.getItem("sessionid") + let url = baseURL + "/semester/id?sessionid=" + localStorage.getItem("sessionid") +
"&id=" + localStorage.getItem("currentsid"); "&id=" + localStorage.getItem("currentsid");
+11
View File
@@ -41,6 +41,17 @@
overflow-anchor: none; overflow-anchor: none;
} }
.Allround::-webkit-scrollbar
{
background-color: rgba(0, 0, 0, 0);
width: 12px;
}
.Allround::-webkit-scrollbar-thumb
{
background-color: gray;
border-radius: 15px;
}
} }
@media only screen and (max-width: 1650px) @media only screen and (max-width: 1650px)
+14 -1
View File
@@ -13,6 +13,18 @@ body {
} }
::-webkit-scrollbar
{
background-color: rgba(0, 0, 0, 0);
width: 12px;
}
::-webkit-scrollbar-thumb
{
background-color: gray;
border-radius: 15px;
}
.splash { .splash {
position: absolute; position: absolute;
border-radius: 70px; border-radius: 70px;
@@ -266,7 +278,7 @@ Calender View
overflow-y: scroll; overflow-y: scroll;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
justify-content: space-around; justify-content: flex-start;
align-items: center; align-items: center;
gap: 10px; gap: 10px;
} }
@@ -289,6 +301,7 @@ Calender View
display: grid; display: grid;
} }
.content { .content {
grid-area: 1 / 1; grid-area: 1 / 1;
} }
File diff suppressed because it is too large Load Diff