We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b33b51 commit 4958aceCopy full SHA for 4958ace
arduino-ide-extension/src/browser/style/dialogs.css
@@ -9,11 +9,13 @@
9
total = padding + margin = 96px
10
*/
11
max-width: calc(100% - 96px) !important;
12
+ min-width: unset;
13
+ max-height: 560px;
14
padding: 0 28px;
15
}
16
17
.p-Widget.dialogOverlay .dialogBlock .dialogTitle {
- padding: 36px 0 28px;
18
+ padding: 20px 0;
19
font-weight: 500;
20
background-color: transparent;
21
font-size: var(--theia-ui-font-size2);
@@ -28,6 +30,7 @@
28
30
29
31
.p-Widget.dialogOverlay .dialogBlock .dialogContent {
32
padding: 0;
33
+ overflow: auto;
34
35
36
.p-Widget.dialogOverlay .dialogBlock .dialogContent > input {
@@ -75,3 +78,10 @@
75
78
.fa.disabled {
76
79
opacity: .4;
77
80
81
+
82
83
+@media only screen and (max-height: 560px) {
84
+ .p-Widget.dialogOverlay .dialogBlock {
85
+ max-height: 400px;
86
+ }
87
+}
0 commit comments