Skip to content

Commit 0a9ed6d

Browse files
Ensure text can be zoomed to 200% without switching to mobile layout. Fixes 1163184.
1 parent 35149c1 commit 0a9ed6d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/ProjectTemplates/Web.ProjectTemplates/content/BlazorServerWeb-CSharp/Shared/MainLayout.razor.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
text-overflow: ellipsis;
3232
}
3333

34-
@media (max-width: 767.98px) {
34+
@media (max-width: 640.98px) {
3535
.top-row:not(.auth) {
3636
display: none;
3737
}
@@ -45,7 +45,7 @@
4545
}
4646
}
4747

48-
@media (min-width: 768px) {
48+
@media (min-width: 641px) {
4949
.page {
5050
flex-direction: row;
5151
}

src/ProjectTemplates/Web.ProjectTemplates/content/ComponentsWebAssembly-CSharp/Client/Shared/MainLayout.razor.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
text-overflow: ellipsis;
3232
}
3333

34-
@media (max-width: 767.98px) {
34+
@media (max-width: 640.98px) {
3535
.top-row:not(.auth) {
3636
display: none;
3737
}
@@ -45,7 +45,7 @@
4545
}
4646
}
4747

48-
@media (min-width: 768px) {
48+
@media (min-width: 641px) {
4949
.page {
5050
flex-direction: row;
5151
}

0 commit comments

Comments
 (0)