David Pomerenke
commited on
Commit
·
51cb38c
1
Parent(s):
003fe33
Adjust font sizes
Browse files
frontend/src/components/AutoComplete.js
CHANGED
@@ -72,7 +72,8 @@ const AutoComplete = ({ languages, onComplete }) => {
|
|
72 |
marginTop: '1rem',
|
73 |
maxWidth: '600px',
|
74 |
justifyContent: 'center',
|
75 |
-
color: '#555'
|
|
|
76 |
}}
|
77 |
>
|
78 |
<span>Examples:</span>
|
|
|
72 |
marginTop: '1rem',
|
73 |
maxWidth: '600px',
|
74 |
justifyContent: 'center',
|
75 |
+
color: '#555',
|
76 |
+
fontSize: '0.8rem'
|
77 |
}}
|
78 |
>
|
79 |
<span>Examples:</span>
|
frontend/src/index.css
CHANGED
@@ -5,7 +5,6 @@ body {
|
|
5 |
sans-serif;
|
6 |
-webkit-font-smoothing: antialiased;
|
7 |
-moz-osx-font-smoothing: grayscale;
|
8 |
-
font-size: 10pt;
|
9 |
}
|
10 |
|
11 |
code {
|
@@ -17,6 +16,15 @@ html, body, #root {
|
|
17 |
height: 100%;
|
18 |
}
|
19 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
.p-datatable-wrapper {
|
21 |
scrollbar-color: #f0f0f0 rgba(0, 0, 0, 0);
|
22 |
border-radius: 0 0 10px 10px;
|
|
|
5 |
sans-serif;
|
6 |
-webkit-font-smoothing: antialiased;
|
7 |
-moz-osx-font-smoothing: grayscale;
|
|
|
8 |
}
|
9 |
|
10 |
code {
|
|
|
16 |
height: 100%;
|
17 |
}
|
18 |
|
19 |
+
.p-component, .pi {
|
20 |
+
font-size: 0.8rem;
|
21 |
+
}
|
22 |
+
|
23 |
+
.p-icon {
|
24 |
+
width: 0.8rem;
|
25 |
+
height: 0.8rem;
|
26 |
+
}
|
27 |
+
|
28 |
.p-datatable-wrapper {
|
29 |
scrollbar-color: #f0f0f0 rgba(0, 0, 0, 0);
|
30 |
border-radius: 0 0 10px 10px;
|