Skip to content

Commit

Permalink
styling
Browse files Browse the repository at this point in the history
  • Loading branch information
Daelso committed Feb 9, 2024
1 parent 55bdc48 commit 3d26e45
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion src/components/game_finder/create_a_game.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
<template>
<q-card class="card q-pa-sm">
<q-card-section>
<div class="text-h6">Create a Game</div>
<div class="text-h6 head" style="font-family: TMUnicorn">
Create a Game
</div>
</q-card-section>

<q-card-section class="q-pa-sm">
Expand Down Expand Up @@ -37,6 +39,7 @@
class="select"
label-color="primary"
v-model="min_players"
min="1"
/>
<q-input
filled
Expand All @@ -46,6 +49,7 @@
class="select"
label-color="primary"
v-model="max_players"
max="99"
/>

<q-input
Expand Down Expand Up @@ -90,6 +94,21 @@
}
}
.head {
font-family: TMUnicorn;
text-shadow: 3px 2px 3px black;
color: red;
font-size: 2em;
@media (max-width: 768px) {
font-size: 2em;
}
@media (max-width: 480px) {
font-size: 1.5em; /* Further adjust font size for even smaller screens */
}
}
.q-input.select {
width: 35em;
margin-bottom: 10px;
Expand Down

0 comments on commit 3d26e45

Please sign in to comment.