Skip to content

Commit

Permalink
Merge pull request #543 from RadhikaMalpani1702/main
Browse files Browse the repository at this point in the history
feat: Hide the Trail Effect in Mobile View
  • Loading branch information
ayush-t02 authored Jul 21, 2024
2 parents 38545b2 + 6dc286b commit 2e7e6bb
Show file tree
Hide file tree
Showing 10 changed files with 63 additions and 1 deletion.
8 changes: 8 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@
width: 450px;
}


.radio-group {
display: flex;
align-items: center;
Expand Down Expand Up @@ -353,6 +354,13 @@
pointer-events: none;
z-index: 9999;
}

@media (max-width : 768px){
.circle-container{
display: none;
}
}

@media (max-width : 768px) {
.whole-background{
position: absolute;
Expand Down
6 changes: 6 additions & 0 deletions pages/404.html
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,12 @@
pointer-events: none;
z-index: 9999;
}

@media (max-width : 768px){
.circle-container{
display: none;
}
}
</style>

<body>
Expand Down
6 changes: 6 additions & 0 deletions pages/FAQs.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,12 @@
pointer-events: none;
z-index: 9999;
}

@media (max-width : 768px){
.circle-container{
display: none;
}
}
</style>
</head>

Expand Down
6 changes: 6 additions & 0 deletions pages/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,12 @@
pointer-events: none;
z-index: 9999;
}

@media (max-width : 768px){
.circle-container{
display: none;
}
}
</style>

</head>
Expand Down
6 changes: 6 additions & 0 deletions pages/contributors.html
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,12 @@
pointer-events: none;
z-index: 9999;
}

@media (max-width : 768px){
.circle-container{
display: none;
}
}
</style>
</head>

Expand Down
6 changes: 6 additions & 0 deletions pages/game.html
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,12 @@
pointer-events: none;
z-index: 9999;
}

@media (max-width : 768px){
.circle-container{
display: none;
}
}
</style>

<!-- Title of the game -->
Expand Down
8 changes: 7 additions & 1 deletion pages/howtoplay.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,13 @@
height: 100%;
pointer-events: none;
z-index: 9999;
}
}

@media (max-width : 768px){
.circle-container{
display: none;
}
}
</style>

<body>
Expand Down
6 changes: 6 additions & 0 deletions pages/licensing.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,12 @@
pointer-events: none;
z-index: 9999;
}

@media (max-width : 768px){
.circle-container{
display: none;
}
}
</style>
</head>

Expand Down
6 changes: 6 additions & 0 deletions pages/privacypolicy.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,12 @@
pointer-events: none;
z-index: 9999;
}

@media (max-width : 768px){
.circle-container{
display: none;
}
}
</style>

<body>
Expand Down
6 changes: 6 additions & 0 deletions pages/termsofservice.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,12 @@
pointer-events: none;
z-index: 9999;
}

@media (max-width : 768px){
.circle-container{
display: none;
}
}
</style>

<body>
Expand Down

0 comments on commit 2e7e6bb

Please sign in to comment.