Sukanth07 commited on
Commit
b885681
·
1 Parent(s): ec9f73e

"Formatted CSS code in utils.py by adding indentation and removing trailing whitespace."

Browse files
Files changed (1) hide show
  1. src/utils.py +21 -21
src/utils.py CHANGED
@@ -11,29 +11,29 @@ from .config import *
11
  # raise Exception(f"Failed to copy builder.py to site-packages: {e}")
12
 
13
  css="""
14
- .container {
15
- max-width: 90%;
16
- }
17
 
18
- .title {
19
- font-family: 'Trebuchet MS';
20
- text-align: center;
21
- font-size: 2em;
22
- font-weight: bold;
23
- padding: 10px 0;
24
- background-color: #1f2121;
25
- }
26
 
27
- input, textarea{
28
- background-color: #18191a;
29
- }
30
 
31
- #output-container {
32
- max-height: 400px;
33
- overflow-y: auto;
34
- padding: 10px;
35
- border: 1px solid #ccc;
36
- border-radius: 5px;
37
- }
38
 
39
  """
 
11
  # raise Exception(f"Failed to copy builder.py to site-packages: {e}")
12
 
13
  css="""
14
+ .container {
15
+ max-width: 90%;
16
+ }
17
 
18
+ .title {
19
+ font-family: 'Trebuchet MS';
20
+ text-align: center;
21
+ font-size: 2em;
22
+ font-weight: bold;
23
+ padding: 10px 0;
24
+ background-color: #1f2121;
25
+ }
26
 
27
+ input, textarea{
28
+ background-color: #18191a;
29
+ }
30
 
31
+ #output-container {
32
+ max-height: 400px;
33
+ overflow-y: auto;
34
+ padding: 10px;
35
+ border: 1px solid #ccc;
36
+ border-radius: 5px;
37
+ }
38
 
39
  """