Prevent buttons from overflowing their container

This commit is contained in:
Corinne Durrmeyer 2024-07-25 16:41:17 +02:00
parent 6383dc359b
commit 444a96a5ee
No known key found for this signature in database
GPG key ID: DDC049DDA35585B6

View file

@ -6,6 +6,11 @@ body {
scroll-behavior: smooth;
}
// Forces line breaks to prevent buttons from overflowing their container
input[type="submit"] {
white-space: normal;
}
.page-wrapper {
position: relative;
min-height: 100%;