qyle commited on
Commit
746fd2b
·
verified ·
1 Parent(s): eebe76e

generic ui improvements

Browse files
static/styles/base.css CHANGED
@@ -271,8 +271,8 @@ input[type="checkbox"] {
271
  }
272
 
273
  select, input[type="text"] {
274
- /* max-width: 402px; */
275
  width: 100%;
 
276
  padding: 12px 6px 12px 6px;
277
  border: 1px solid #ddd;
278
  border-radius: 8px;
 
271
  }
272
 
273
  select, input[type="text"] {
 
274
  width: 100%;
275
+ box-sizing: border-box;
276
  padding: 12px 6px 12px 6px;
277
  border: 1px solid #ddd;
278
  border-radius: 8px;
static/styles/components/feedback.css CHANGED
@@ -179,10 +179,6 @@
179
  opacity: 1; /* Always show on mobile */
180
  }
181
 
182
- .feedback-modal .button-group {
183
- flex-direction: column;
184
- }
185
-
186
  .feedback-modal .button-group button {
187
  width: 100%;
188
  }
 
179
  opacity: 1; /* Always show on mobile */
180
  }
181
 
 
 
 
 
182
  .feedback-modal .button-group button {
183
  width: 100%;
184
  }
static/styles/components/settings.css CHANGED
@@ -37,7 +37,7 @@
37
  font-weight: 600;
38
  cursor: pointer;
39
  transition: all 0.2s ease;
40
- min-width: 60px;
41
  }
42
 
43
  .font-size-btn:hover {
@@ -50,3 +50,11 @@
50
  .font-size-btn:active {
51
  transform: translateY(0);
52
  }
 
 
 
 
 
 
 
 
 
37
  font-weight: 600;
38
  cursor: pointer;
39
  transition: all 0.2s ease;
40
+ min-width: 80px;
41
  }
42
 
43
  .font-size-btn:hover {
 
50
  .font-size-btn:active {
51
  transform: translateY(0);
52
  }
53
+
54
+
55
+ /* Responsive */
56
+ @media (max-width: 768px) {
57
+ .font-size-container {
58
+ justify-content: center;
59
+ }
60
+ }