almost finish tailwind integration

This commit is contained in:
2020-04-27 21:41:55 +02:00
parent 578c51eb1a
commit 8ce0f34cd6
2 changed files with 10 additions and 11 deletions

View File

@@ -30,7 +30,7 @@
//@import "pages/meteo"; //@import "pages/meteo";
//@import "pages/games"; //@import "pages/games";
// //
//@import "pages/games/hangman"; @import "pages/games/hangman";
@tailwind utilities; @tailwind utilities;

View File

@@ -17,14 +17,14 @@
.figure-container { .figure-container {
fill: transparent; fill: transparent;
stroke: $mediumDark; stroke: orange;
stroke-width: 4px; stroke-width: 4px;
stroke-linecap: round; stroke-linecap: round;
} }
.figure-part { .figure-part {
display: none; display: none;
stroke: $dark; stroke: #7b341e;
} }
.wrong-letters-container { .wrong-letters-container {
@@ -47,13 +47,11 @@
} }
.word { .word {
display: flex; @apply flex justify-center items-center;
align-self: center;
justify-self: center;
bottom: 1rem; bottom: 1rem;
.letter { .letter {
border-bottom: 3px solid $medium; border-bottom: 3px solid #c05621;
display: inline-flex; display: inline-flex;
font-size: 30px; font-size: 30px;
align-items: center; align-items: center;
@@ -69,16 +67,17 @@
width: calc(100% - 6rem); width: calc(100% - 6rem);
.popup { .popup {
background-color: $medium; background-color: #c05621;
border-radius: 5px; border-radius: 5px;
color: $light; color: #fbd38d;
min-height: 10rem;
padding: 20px; padding: 20px;
text-align: center; text-align: center;
button { button {
cursor: pointer; cursor: pointer;
background-color: #fff; background-color: #fff;
color: $dark; color: #7b341e;
border: 0; border: 0;
margin-top: 20px; margin-top: 20px;
padding: 12px 20px; padding: 12px 20px;
@@ -96,7 +95,7 @@
} }
.notification-container { .notification-container {
background-color: $mediumLight; background-color: #ed8936;
border-radius: 2px; border-radius: 2px;
padding: 1rem; padding: 1rem;
text-align: center; text-align: center;