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

Merge branch '597-orientation-recap-on-tiny-screens' into 'dev'

fix(accessibility): orientation recap on tiny screens

See merge request !882
parents a50d1823 502aabdd
No related branches found
No related tags found
2 merge requests!907V3.2.0,!882fix(accessibility): orientation recap on tiny screens
...@@ -14,7 +14,12 @@ ...@@ -14,7 +14,12 @@
flex-direction: column; flex-direction: column;
gap: 32px; gap: 32px;
margin-top: 32px; margin-top: 32px;
width: 600px; width: 100vw;
max-width: 600px;
overflow-wrap: anywhere;
::ng-deep button {
overflow-wrap: break-word;
}
@media print { @media print {
gap: 24px; gap: 24px;
margin-top: 24px; margin-top: 24px;
......
...@@ -75,7 +75,7 @@ div.titleform { ...@@ -75,7 +75,7 @@ div.titleform {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
gap: 40px; gap: 40px;
width: 100%; width: 100vw;
max-width: 600px; max-width: 600px;
} }
......
...@@ -13,7 +13,8 @@ ...@@ -13,7 +13,8 @@
} }
.container { .container {
width: 600px; width: 100vw;
max-width: 600px;
@media print { @media print {
width: 100%; width: 100%;
} }
......
...@@ -4,7 +4,8 @@ ...@@ -4,7 +4,8 @@
.inputContainer { .inputContainer {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
width: 600px; width: 100vw;
max-width: 600px;
&.disabled { &.disabled {
cursor: not-allowed; cursor: not-allowed;
label { 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