Skip to content

Commit

Permalink
feat: Add hover effects and transitions to TableNode styling
Browse files Browse the repository at this point in the history
  • Loading branch information
MH4GF committed Dec 4, 2024
1 parent 0dcfcd4 commit 7d13772
Showing 1 changed file with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
border-radius: var(--border-radius-md);
border: 1px solid var(--overlay-20);
width: 172px;
transition: border-color 300ms var(--default-timing-function);
}

.wrapper:hover {
border: 1px solid var(--primary-accent);
box-shadow: 0px 0px 20px 0px rgba(29, 237, 131, 0.4);
}

.columnWrapper {
Expand Down Expand Up @@ -37,8 +43,13 @@
font-size: var(--font-size-1);
font-weight: 400;
line-height: normal;
opacity: 0;
transition: opacity 300ms var(--default-timing-function);
}

.wrapper:hover .columnType {
opacity: 1;
}

.content {
top: var(--default-header-height);
Expand Down

0 comments on commit 7d13772

Please sign in to comment.