inital-release

This commit is contained in:
mike
2025-12-16 14:09:59 +01:00
parent a9fe8fa03c
commit a9359fa9c4
2 changed files with 23 additions and 13 deletions

View File

@@ -170,7 +170,7 @@ body {
border-radius: 15px;
padding: 20px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
overflow: visible;
overflow: hidden;
position: relative;
}
@@ -183,19 +183,21 @@ body {
.puzzle-section {
padding: 10px;
border-radius: 10px;
overflow: visible;
overflow: hidden;
width: 100%;
}
}
/* Crossword Grid */
.grid-container {
display: grid;
gap: 1px;
gap: 2px;
background: #cbd5e0;
padding: 10px;
border-radius: 10px;
box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
margin: 0 auto;
width: fit-content;
max-width: 100%;
}
@@ -203,6 +205,7 @@ body {
.grid-container {
padding: 5px;
gap: 1px;
width: fit-content;
}
}