Sync
All checks were successful
Build, Push, and Deploy to Nomad / docker-nomad (push) Successful in 37s

This commit is contained in:
2024-12-17 19:06:34 +01:00
parent 7072e7e099
commit dea59f3d23
7 changed files with 52 additions and 27 deletions

View File

@@ -28,16 +28,25 @@ $modal-content-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
padding: 20px;
border-radius: 5px;
box-shadow: $modal-content-shadow;
width: 400px;
width: 90%; /* Sæt bredden til 80% af skærmens bredde */
height: 90%;
// max-width: 1200px; /* Tilføj en maks-bredde for store skærme */
text-align: center;
z-index: $modal-content-z-index; // Content stays above the blurred overlay
z-index: $modal-content-z-index; /* Content stays above the blurred overlay */
margin: 10% auto; /* Centrer modalen horisontalt og tilføj vertikal afstand */
}
// Rotating buttons
.open {
padding: -20px;
margin: -10% auto; /* Centrer modalen horisontalt og tilføj vertikal afstand */
transform: rotate(15deg); // Rotates button 15 degrees clockwise
}
.open_inv {
padding: -20px;
margin: -10% auto; /* Centrer modalen horisontalt og tilføj vertikal afstand */
transform: rotate(-15deg); // Rotates button 15 degrees counterclockwise
}