From e31b68197ec16d2805ec14c2bf532a03f4739e92 Mon Sep 17 00:00:00 2001 From: Adam Mathes Date: Fri, 13 Feb 2026 07:01:40 -0800 Subject: Implement Frontend Logout with tests --- frontend/src/App.css | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'frontend/src/App.css') diff --git a/frontend/src/App.css b/frontend/src/App.css index 57800a4..69edabd 100644 --- a/frontend/src/App.css +++ b/frontend/src/App.css @@ -57,4 +57,20 @@ body { padding: 2rem; overflow-y: auto; background: #fff; +} + +.logout-btn { + background: transparent; + border: 1px solid rgba(255, 255, 255, 0.3); + color: white; + padding: 0.5rem 1rem; + border-radius: 4px; + cursor: pointer; + transition: all 0.2s; + font-size: 0.9rem; +} + +.logout-btn:hover { + background: rgba(255, 255, 255, 0.1); + border-color: rgba(255, 255, 255, 0.5); } \ No newline at end of file -- cgit v1.2.3