Skip to content

Commit

Permalink
chore: cleanup styles
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewgallo committed Sep 20, 2024
1 parent 7eb8d5a commit e83bcf1
Showing 1 changed file with 9 additions and 16 deletions.
25 changes: 9 additions & 16 deletions web-components/customize-columns/src/basic.ts
Original file line number Diff line number Diff line change
Expand Up @@ -205,25 +205,18 @@ export class MyBasicTable extends LitElement {
display: flex;
flex-direction: column;
align-items: center;
border-top: 1px solid var(--cds-border-subtle);
}
.item {
display: flex;
align-items: center;
justify-content: space-between;
box-sizing: border-box;
padding: 10px 20px;
border: none;
gap: 10px;
background-color: #fff;
outline: none;
min-height: 48px;
width: 100%;
white-space: nowrap;
transition: transform 0.3s ease, box-shadow 0.3s ease;
cursor: hand;
border-bottom: 1px solid var(--cds-border-subtle);
display: flex;
align-items: center;
padding: 0 1rem;
border: none;
min-height: 3rem;
width: 100%;
transition: transform 0.3s ease, box-shadow 0.3s ease;
cursor: hand;
border-bottom: 1px solid var(--cds-border-subtle);
}
.dragging-item {
border: 2px solid blue;
Expand Down

0 comments on commit e83bcf1

Please sign in to comment.