Skip to content

Commit

Permalink
Update App.css
Browse files Browse the repository at this point in the history
  • Loading branch information
acharneski committed Nov 29, 2024
1 parent 7754bb3 commit 4643c57
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions webapp/chat-app/src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,14 @@
font-weight: bold;
color: var(--primary-color);
}
/* Active tab state */
.tab-button.active {
background-color: var(--color-primary-dark);
color: var(--color-light);
transform: translateY(-2px);
box-shadow: var(--shadow-md);
}
/* Focus state - now separate from active state */

.tab-button:focus-visible {
outline: 3px solid var(--primary-color);
Expand Down Expand Up @@ -135,7 +143,9 @@


.tab-button:hover {
background: #f2f2f7;
background: var(--hover-background);
transform: translateY(-1px);
box-shadow: var(--shadow-sm);
}

.tab-content {
Expand Down Expand Up @@ -191,9 +201,6 @@
.tab-button:focus {
outline: 2px solid var(--primary-color);
outline-offset: 2px;
background-color: var(--color-primary-dark);
transform: translateY(-2px);
box-shadow: var(--shadow-md);
}

.cmd-button:active {
Expand Down

0 comments on commit 4643c57

Please sign in to comment.