fix(rtl): modal positioning

This commit is contained in:
kolaente 2025-08-03 13:33:54 +02:00
parent 9a6efc0d5b
commit 8fce55753c
1 changed files with 3 additions and 2 deletions

View File

@ -152,8 +152,9 @@ $modal-width: 1024px;
.hint-modal .modal-content {
text-align: center;
position: absolute;
inset-block-start: 50%;
inset-inline-start: 50%;
// fine to use top/left since we're only using this to position it centered
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
@media screen and (max-width: $tablet) {