Spaces:
Sleeping
Sleeping
Kieran Fraser
commited on
Commit
·
7bfd08e
1
Parent(s):
07bac20
Fix css
Browse filesSigned-off-by: Kieran Fraser <[email protected]>
app.py
CHANGED
@@ -25,6 +25,11 @@ 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; }
|
|
|
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 |
|
34 |
.center-text { text-align: center !important }
|
35 |
.larger-gap { gap: 100px !important; }
|