Skip to content

Commit

Permalink
adding webpack and babel.config.js
Browse files Browse the repository at this point in the history
  • Loading branch information
jaiminmoslake7020 committed Nov 26, 2024
1 parent e256477 commit b4b6623
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions app/css/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@
}

body {
@apply bg-bkg text-bkg;
@apply text-4xl;
@apply bg-bkg text-content;
}


Expand Down Expand Up @@ -87,7 +86,7 @@ body {
@apply flex w-full gap-4;
}
.tic-tac-cell {
@apply border border-content w-[33%] font-bold text-2xl relative aspect-square rounded cursor-pointer;
@apply border border-content w-[33%] font-bold relative aspect-square rounded cursor-pointer text-3xl lg:text-5xl;
@apply transition-all delay-75;

&.type-O{
Expand All @@ -109,7 +108,7 @@ body {
transform: rotate3d(0,0,0,0deg) scale(100%);

.tic-tac-cell-value{
@apply text-6xl;
@apply text-8xl;
}

}
Expand All @@ -121,7 +120,7 @@ body {
transform: rotate3d(0,0,0,0deg) scale(100%);

.tic-tac-cell-value{
@apply text-6xl;
@apply text-6xl lg:text-8xl;
}

}
Expand All @@ -146,7 +145,7 @@ body {
@apply scale-100;

.tic-tac-cell-value{
@apply text-6xl;
@apply text-6xl lg:text-8xl;
}

}
Expand All @@ -159,7 +158,7 @@ body {
}

.tic-tac-cell-value{
@apply flex justify-center items-center w-full h-full text-3xl;
@apply flex justify-center items-center w-full h-full;
}


Expand Down

0 comments on commit b4b6623

Please sign in to comment.