Skip to content
Snippets Groups Projects
Commit 502aabdd authored by Marlène SIMONDANT's avatar Marlène SIMONDANT
Browse files

fix(accessibility): orientation recap on tiny screens

parent bdce4cbd
No related branches found
No related tags found
Loading
......@@ -14,7 +14,12 @@
flex-direction: column;
gap: 32px;
margin-top: 32px;
width: 600px;
width: 100vw;
max-width: 600px;
overflow-wrap: anywhere;
::ng-deep button {
overflow-wrap: break-word;
}
@media print {
gap: 24px;
margin-top: 24px;
......
......@@ -75,7 +75,7 @@ div.titleform {
display: flex;
flex-direction: column;
gap: 40px;
width: 100%;
width: 100vw;
max-width: 600px;
}
......
......@@ -13,7 +13,8 @@
}
.container {
width: 600px;
width: 100vw;
max-width: 600px;
@media print {
width: 100%;
}
......
......@@ -4,7 +4,8 @@
.inputContainer {
display: flex;
flex-direction: column;
width: 600px;
width: 100vw;
max-width: 600px;
&.disabled {
cursor: not-allowed;
label {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment