Skip to content

Commit

Permalink
Fix styling (incorrect converted)
Browse files Browse the repository at this point in the history
  • Loading branch information
mkszepp committed Sep 21, 2024
1 parent 450afd7 commit 3d31be6
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions docs/app/styles/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
top: 0;
right: 0;
bottom: 0;
background: rgb(71, 1, 1 / 50%);
background: rgb(71 1 1 / 50%);
color: pink;
}

Expand Down Expand Up @@ -108,7 +108,7 @@
display: inline-block;
position: relative;
cursor: move;
background-color: hsl(197deg 100% / 45%);
background-color: hsl(197deg 100% 45%);
margin: 0 4px;
}

Expand All @@ -129,12 +129,12 @@

.grid-demo .sortable-item.is-dragging,
.horizontal-demo .sortable-item.is-dragging {
background: hsl(197deg 100% / 35%);
background: hsl(197deg 100% 35%);
}

.grid-demo .sortable-item.is-dropping,
.horizontal-demo .sortable-item.is-dropping {
background: hsl(197deg 100% / 40%);
background: hsl(197deg 100% 40%);
z-index: 10;
}

Expand Down Expand Up @@ -194,7 +194,7 @@
top: 0;
right: 0;
bottom: 0;
background: rgb(71, 1, 1 / 50%);
background: rgb(71 1 1 / 50%);
color: pink;
}

Expand Down
12 changes: 6 additions & 6 deletions test-app/app/styles/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
top: 0;
right: 0;
bottom: 0;
background: rgb(71, 1, 1 / 50%);
background: rgb(71 1 1 / 50%);
color: pink;
}

Expand Down Expand Up @@ -138,14 +138,14 @@
display: inline-block;
position: relative;
cursor: move;
background-color: hsl(197deg 100% / 45%);
background-color: hsl(197deg 100% 45%);
margin: 0 4px;
}

.grid-demo .sortable-item .card {
width: 100%;
height: 120px;
background-color: hsl(197deg 100% / 45%);
background-color: hsl(197deg 100% 45%);
text-align: center;
display: flex;
align-items: center;
Expand All @@ -155,13 +155,13 @@
.grid-demo .sortable-item.is-dragging .card,
.grid-demo-2 .sortable-item.is-dragging,
.horizontal-demo .sortable-item.is-dragging {
background: hsl(197deg 100% / 35%);
background: hsl(197deg 100% 35%);
}

.grid-demo .sortable-item.is-dropping .card,
.grid-demo-2 .sortable-item.is-dropping,
.horizontal-demo .sortable-item.is-dropping {
background: hsl(197deg 100% / 40%);
background: hsl(197deg 100% 40%);
z-index: 10;
}

Expand Down Expand Up @@ -236,7 +236,7 @@
top: 0;
right: 0;
bottom: 0;
background: rgb(71, 1, 1 / 50%);
background: rgb(71 1 1 / 50%);
color: pink;
}

Expand Down

0 comments on commit 3d31be6

Please sign in to comment.