update modal overlay
All checks were successful
Hugo / build (push) Successful in 5s

This commit is contained in:
brooke 2024-08-06 17:46:28 -04:00
parent 0e2b31b76e
commit 500f118cc9
2 changed files with 14 additions and 3 deletions

View file

@ -45,12 +45,23 @@
top: 0;
bottom: 0;
left: 0;
width: 60%;
width: 85%;
background: rgb(255, 255, 255);
transform: skew(-30deg);
transform: skew(
-15deg
);
transform-origin: top;
}
@media only screen and (max-width: 600px) {
#modal-overlay:before {
width: 100%;
transform: skew(
20deg
);
}
}
h1 {
font-size: 24px;
color: #333;

File diff suppressed because one or more lines are too long