This commit is contained in:
David Haz
2025-07-10 22:10:54 +03:00
parent 77a588ea56
commit 8866f339c2
17 changed files with 242 additions and 34 deletions

View File

@@ -27,4 +27,42 @@ body {
.back-to-top {
background: #0b0b0b !important;
border: 1px solid #142216;
}
/* Mobile toast container fixes */
@media (max-width: 640px) {
.p-toast {
position: fixed !important;
bottom: 1rem !important;
right: 1rem !important;
left: 1rem !important;
width: auto !important;
max-width: calc(100vw - 2rem) !important;
}
.p-toast-message {
max-width: 100% !important;
min-width: unset !important;
width: 100% !important;
margin: 0 !important;
font-size: 0.875rem !important;
padding: 0.75rem !important;
box-sizing: border-box !important;
}
.p-toast-message-content {
padding: 0.5rem !important;
gap: 0.5rem !important;
}
.p-toast-message-text {
word-wrap: break-word !important;
overflow-wrap: break-word !important;
hyphens: auto !important;
}
.p-toast-message-summary {
font-size: 0.875rem !important;
line-height: 1.25 !important;
}
}