Skip to content

Commit

Permalink
it's not pusshing the css for some reason
Browse files Browse the repository at this point in the history
  • Loading branch information
candywal committed Dec 6, 2023
1 parent 0bd4270 commit b79eade
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions Frontend/src/pages/vote.module.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
/* Vote.module.css */

.container {
display: flex;
justify-content: center;
align-items: center;
gap: 20px;
position: relative;
}

.imageWrapper {
position: relative;
width: 300px; /* Adjust based on how large you want the images to display */
height: 300px; /* Adjust based on how large you want the images to display */
cursor: pointer;
transition: transform 1s, opacity 1s;
}

.default {
opacity: 1; /* Ensure the default opacity is 1 */
transform: scale(1);
}

.winning {
transform: scale(1.2);
z-index: 1;
}

.losing {
opacity: 0.5;
}

0 comments on commit b79eade

Please sign in to comment.