deepkyu commited on
Commit
80b25e0
1 Parent(s): 7b2e6f0

add comment

Browse files
Files changed (1) hide show
  1. main.css +7 -0
main.css CHANGED
@@ -1,13 +1,17 @@
 
1
  h1, h2, h3 {
2
  text-align: center;
3
  display:block;
4
  }
5
 
 
6
  /* Hide sort buttons at gr.DataFrame */
7
  .sort-button {
8
  display: none !important;
9
  }
10
 
 
 
11
  .user-row * {
12
  background-color: var(--checkbox-label-background-fill) !important;
13
  border-color: var(--primary-400) !important;
@@ -29,12 +33,15 @@ h1, h2, h3 {
29
  border-radius: 22px 22px 22px 0 !important;
30
  }
31
 
 
 
32
  .md :not(pre) > code {
33
  border-radius: 3px !important;
34
  border: 0px !important;
35
 
36
  }
37
 
 
38
  input[type="range"] {
39
  background-color: var(--checkbox-background-color) !important;
40
  }
 
1
+ /* Center-align the title */
2
  h1, h2, h3 {
3
  text-align: center;
4
  display:block;
5
  }
6
 
7
+
8
  /* Hide sort buttons at gr.DataFrame */
9
  .sort-button {
10
  display: none !important;
11
  }
12
 
13
+
14
+ /* Color fix at gr.Chatbot */
15
  .user-row * {
16
  background-color: var(--checkbox-label-background-fill) !important;
17
  border-color: var(--primary-400) !important;
 
33
  border-radius: 22px 22px 22px 0 !important;
34
  }
35
 
36
+
37
+ /* Border fix for the code expression at gr.Markdown */
38
  .md :not(pre) > code {
39
  border-radius: 3px !important;
40
  border: 0px !important;
41
 
42
  }
43
 
44
+ /* Better visibility at gr.Slider */
45
  input[type="range"] {
46
  background-color: var(--checkbox-background-color) !important;
47
  }