Commit ·
ce4890f
1
Parent(s): 1e43991
delete css and empty list
Browse files- custom_style.css +0 -9
- index.py +2 -1
custom_style.css
DELETED
|
@@ -1,9 +0,0 @@
|
|
| 1 |
-
/* custom_style.css */
|
| 2 |
-
|
| 3 |
-
.st-expander > summary {
|
| 4 |
-
background-color: #4CAF50; /* Green */
|
| 5 |
-
color: white;
|
| 6 |
-
font-weight: bold;
|
| 7 |
-
padding: 10px;
|
| 8 |
-
border-radius: 5px;
|
| 9 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
index.py
CHANGED
|
@@ -10,7 +10,8 @@ if not os.path.exists("captured_images"):
|
|
| 10 |
# Initialize the session state
|
| 11 |
session_state = st.session_state
|
| 12 |
if 'ingredientsList' not in session_state:
|
| 13 |
-
session_state['ingredientsList'] = [
|
|
|
|
| 14 |
|
| 15 |
def main():
|
| 16 |
|
|
|
|
| 10 |
# Initialize the session state
|
| 11 |
session_state = st.session_state
|
| 12 |
if 'ingredientsList' not in session_state:
|
| 13 |
+
session_state['ingredientsList'] = []
|
| 14 |
+
#["apple", "banana", "orange", "strawberries"]
|
| 15 |
|
| 16 |
def main():
|
| 17 |
|