Skip to content

Commit 13ef4bd

Browse files
authored
Merge pull request #34 from Ctoic/update-expense-sheet
Update the expense sheet
2 parents 2b8bc5e + ce71483 commit 13ef4bd

File tree

6 files changed

+160
-226
lines changed

6 files changed

+160
-226
lines changed

__pycache__/forms.cpython-312.pyc

-4 Bytes
Binary file not shown.

__pycache__/models.cpython-312.pyc

-4 Bytes
Binary file not shown.

models.py

-1
Original file line numberDiff line numberDiff line change
@@ -53,4 +53,3 @@ class Admin(db.Model, UserMixin):
5353
name = db.Column(db.String(100), nullable=False) # Retain name from the master branch
5454
email = db.Column(db.String(100), unique=True, nullable=False) # Retain email from the master branch
5555
password_hash = db.Column(db.String(128), nullable=False) # Use password_hash from add-admin-login
56-

requirements.txt

+12-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,14 @@
1-
Flask==2.3.3
2-
Flask-Migrate==4.0.4
3-
Flask-SQLAlchemy==3.0.5
1+
Flask==3.0.2
2+
Flask-SQLAlchemy==3.1.1
3+
Flask-Migrate==4.0.5
44
Flask-Login==0.6.3
5+
Flask-WTF==1.2.1
56
Flask-Bcrypt==1.0.1
6-
Werkzeug==3.0.6
7-
reportlab==3.6.13
7+
Werkzeug==3.0.1
8+
SQLAlchemy==2.0.25
9+
reportlab==4.1.0
10+
python-dateutil==2.8.2
11+
alembic==1.13.1
12+
email-validator==2.1.0.post1
13+
Jinja2==3.1.3
14+
WTForms==3.1.2

static/style.css

+32
Original file line numberDiff line numberDiff line change
@@ -136,3 +136,35 @@ footer {
136136
.social-icon img:hover {
137137
transform: scale(1.2);
138138
}
139+
140+
/* Styles for interactive cards and buttons */
141+
.card {
142+
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
143+
border-radius: 12px;
144+
color: black !important;
145+
}
146+
147+
.btn-primary, .btn-danger {
148+
transition: transform 0.2s ease-in-out;
149+
}
150+
151+
.btn-primary:hover, .btn-danger:hover {
152+
transform: scale(1.05);
153+
}
154+
155+
.table th, .table td {
156+
vertical-align: middle;
157+
text-align: center;
158+
}
159+
160+
.btn-warning {
161+
color: #fff;
162+
}
163+
164+
.card-body, .card-title, .form-label, input {
165+
color: black !important;
166+
}
167+
168+
.card p-4 {
169+
background-color: black;
170+
}

0 commit comments

Comments
 (0)