We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef2a76f commit a099fcbCopy full SHA for a099fcb
packages/yasgui/src/endpointSelect.scss
@@ -4,6 +4,7 @@
4
margin: 4px 0px;
5
border: 2px solid #ccc;
6
width: 100%;
7
+ min-width: 200px;
8
&:hover {
9
border-color: #bbb;
10
}
@@ -125,6 +126,11 @@
125
126
align-items: center;
127
gap: 4px;
128
margin-left: 4px;
129
+
130
+ // Hide on small screens (mobile)
131
+ @media (max-width: 768px) {
132
+ display: none;
133
+ }
134
135
136
.endpointButton {
@@ -152,5 +158,11 @@
152
158
outline: 2px solid var(--yasgui-endpoint-button-focus, #5cb3fd);
153
159
outline-offset: 2px;
154
160
161
162
+ // Reduce padding on medium screens
163
+ @media (max-width: 1024px) {
164
+ padding: 4px 8px;
165
+ font-size: 12px;
166
155
167
156
168
0 commit comments