Spaces:
Sleeping
Sleeping
apehex commited on
Commit ·
d18b70f
1
Parent(s): 349672c
Load custom CSS styles to give a visual feedback on button click.
Browse files
app.py
CHANGED
|
@@ -4,7 +4,7 @@ import gpm.pipeline
|
|
| 4 |
|
| 5 |
# META #########################################################################
|
| 6 |
|
| 7 |
-
STYLE = '''.
|
| 8 |
TITLE = '''Generative Password Manager'''
|
| 9 |
INTRO = '''This is a POC, do **not** use it to manage your secrets.\nStateless password manager: you don't need to save passwords, they can all be derived from a single master key.\nAlways use the same format for a given target / ID: for example the password generated for "Github" and "github.com" are different.'''
|
| 10 |
|
|
|
|
| 4 |
|
| 5 |
# META #########################################################################
|
| 6 |
|
| 7 |
+
STYLE = '''.gradio-container button.primary:active { box-shadow: inset 0 0 0 256px rgba(255, 255, 255, 0.16); }'''
|
| 8 |
TITLE = '''Generative Password Manager'''
|
| 9 |
INTRO = '''This is a POC, do **not** use it to manage your secrets.\nStateless password manager: you don't need to save passwords, they can all be derived from a single master key.\nAlways use the same format for a given target / ID: for example the password generated for "Github" and "github.com" are different.'''
|
| 10 |
|