Skip to content

Commit

Permalink
some visual bugs and Anmelde-Knopf bug fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
FilipeRamalho committed Jun 27, 2024
1 parent 513c503 commit f0b28e0
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 6 deletions.
8 changes: 7 additions & 1 deletion assets/css/components/matchlist.module.css
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
.matchList {
background: white;
width: 10em;
width: 13em;
text-align: center;
border-radius: 5px;
height: min-content;
margin: 0 2em 2em;
}

.name {
Expand Down Expand Up @@ -42,4 +43,9 @@
.match.select:active{
box-shadow: none!important;
cursor: initial;
}

@media only screen and (max-width: 600px) {.matchList {
width: 80svw;
}
}
2 changes: 1 addition & 1 deletion assets/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ html {
}

:root{
--fs-red: #bf282c
--fs-red: #c01526;
}

/* latin */
Expand Down
6 changes: 4 additions & 2 deletions assets/css/pages/home.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,15 @@
}

.view {
margin-bottom: 20px;
padding: 20px;
background-color: #fff;
border-radius: 5px;
box-shadow: 0 0 5px rgba(0, 0, 0, .1);
font-size: 4em;
margin: 1em;
margin-bottom: 20px;
font-size: 10vw;
width: 80svw;
text-align: center;
}

.view:active {
Expand Down
Binary file added assets/img/FS_logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/components/navbar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const navbar = {
view() {
return div("." + css.navbar, [
a({ href: "#!/" }, img("." + css.logo, { src: require("/assets/img/icon.png") })),
img("." + css.fslogo, { src: require("/assets/img/FS_logo.jpg") }),
img("." + css.fslogo, { src: require("/assets/img/FS_logo.png") }),
]);
},
};
Expand Down
6 changes: 5 additions & 1 deletion src/pages/non-sign.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,11 @@ const page = () => {
await m.request({
method: "PUT",
url:
window.location.origin +
await fetch('env.json').then(response => {
return response.json()
}).then((data) => {
return data.api_url
}) +
"/api/participant/" +
Number.parseInt(k["id"]),
withCredentials: true,
Expand Down

0 comments on commit f0b28e0

Please sign in to comment.