Fix backend deps and apply theme to all Cancel buttons

- Pin bcrypt==3.2.2 to fix passlib bcrypt backend detection error
- Add email-validator==2.2.0 required by Pydantic EmailStr
- Add btn-sm class to Cancel buttons in Admin, Dashboard, Log, Schedule views

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-27 23:24:39 -08:00
parent e92476db07
commit 781e179090
6 changed files with 8 additions and 6 deletions

View File

@@ -43,7 +43,7 @@
<textarea v-model="newLog.notes" placeholder="What did they do?" rows="3"></textarea>
</div>
<div class="form-actions">
<button type="button" @click="showForm = false">Cancel</button>
<button type="button" class="btn-sm" @click="showForm = false">Cancel</button>
<button type="submit" class="btn-primary">Save Log</button>
</div>
</form>