Kieran Fraser
commited on
Commit
•
6b5a4f4
1
Parent(s):
070cdef
Fix layout
Browse files
app.py
CHANGED
@@ -25,7 +25,15 @@ from art.attacks.poisoning.perturbations import insert_image
|
|
25 |
device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')
|
26 |
|
27 |
css = """
|
28 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
.center-text { text-align: center !important }
|
30 |
.larger-gap { gap: 100px !important; }
|
31 |
.symbols { text-align: center !important; margin: auto !important; }
|
|
|
25 |
device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')
|
26 |
|
27 |
css = """
|
28 |
+
:root {
|
29 |
+
--text-md: 20px !important;
|
30 |
+
--text-sm: 18px !important;
|
31 |
+
}
|
32 |
+
.input-image { margin: auto !important }
|
33 |
+
.plot-padding { padding: 20px; }
|
34 |
+
.eta-bar.svelte-1occ011.svelte-1occ011 {
|
35 |
+
background: #ccccff !important;
|
36 |
+
}
|
37 |
.center-text { text-align: center !important }
|
38 |
.larger-gap { gap: 100px !important; }
|
39 |
.symbols { text-align: center !important; margin: auto !important; }
|