Skip to content

Commit

Permalink
HOTFIX mobile layout add tournament
Browse files Browse the repository at this point in the history
  • Loading branch information
JoFlucki committed Mar 22, 2024
1 parent 80ec912 commit f0f2f79
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions frontend/src/views/AddTournamentView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ const addTournament = () => {
</template>

<style lang="scss" scoped>
@import "@/assets/styles/breakpoints";
h1,
form {
grid-column: 1 / span 12;
Expand Down Expand Up @@ -82,4 +84,46 @@ button {
grid-column: 3 / span 4;
height: 32px;
}
@media(max-width: $medium-breakpoint) {
form {
label {
grid-column: 1 / span 4;
}
input,
textarea,
select {
grid-column: 5 / span 8;
height: 32px;
}
}
button {
grid-column: 5 / span 8;
height: 32px;
}
}
@media(max-width: $small-breakpoint) {
form {
label {
grid-column: 1 / span 12;
}
input,
textarea,
select {
grid-column: 1 / span 12;
height: 32px;
}
}
button {
grid-column: 1 / span 12;
height: 32px;
}
}
</style>

0 comments on commit f0f2f79

Please sign in to comment.