Skip to content

Commit 7f0a0ed

Browse files
fix design issues
1 parent 0b50696 commit 7f0a0ed

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

packages/devextreme-cli/src/templates/react/application/src/dx-styles.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ body {
2525
display: flex;
2626
height: 100%;
2727
width: 100%;
28+
min-width: 320px;
2829
}
2930

3031
.content {

packages/devextreme-cli/src/templates/vue-v3/application/src/App.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,5 +93,6 @@ body {
9393
display: flex;
9494
height: 100%;
9595
width: 100%;
96+
min-width: 320px;
9697
}
9798
</style>

packages/devextreme-cli/src/templates/vue-v3/application/src/dx-styles.scss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ $side-panel-min-width: 60px;
1515
margin: 0;
1616
line-height: 40px;
1717
}
18+
}
1819

19-
.screen-x-small & {
20-
padding: 20px;
21-
}
20+
.screen-x-small .content {
21+
padding: 20px;
2222
}
2323

2424
.container {

packages/devextreme-schematics/src/add-layout/files/src/dx-styles.scss

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ html, body {
2424
display: flex;
2525
height: 100%;
2626
width: 100%;
27+
min-width: 320px;
2728
}
2829

2930
.content {
@@ -36,10 +37,10 @@ html, body {
3637
margin: 0;
3738
line-height: 40px;
3839
}
40+
}
3941

40-
.screen-x-small & {
41-
padding: 20px;
42-
}
42+
.screen-x-small .content {
43+
padding: 20px;
4344
}
4445

4546
.container {

0 commit comments

Comments
 (0)