Responsive layout fix: flex-wrap, button text wrap

This commit is contained in:
DarkCat09 2024-03-09 19:01:47 +04:00
parent f69d2134ac
commit 24b8fb6cac
Signed by: DarkCat09
GPG key ID: 0A26CD5B3345D6E3

View file

@ -54,7 +54,8 @@ header>label {
display: flex;
flex-direction: row;
align-items: center;
gap: 0.25rem;
column-gap: 0.25rem;
flex-wrap: wrap;
}
input[type=radio],
@ -63,4 +64,8 @@ header>label {
margin-left: 0.25rem;
padding: 0;
}
button {
width: max-content;
}
}