Skip to content

Commit

Permalink
fix: content-loaderの色を薄めに変更
Browse files Browse the repository at this point in the history
  • Loading branch information
kawamataryo committed Oct 25, 2024
1 parent 335b332 commit b7d4fdc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/ContentLoader/ContentLoader.vue
Original file line number Diff line number Diff line change
Expand Up @@ -76,14 +76,14 @@ const lines = computed(() => {
}
.line {
background-color: #ccc;
background-color: $line-color-light;
animation: pulse 1.5s ease-in-out infinite;
border-radius: 0.25rem;
flex-grow: 1;
}
.circle {
background-color: #ccc;
background-color: $line-color-light;
border-radius: 50%;
animation: pulse 1.5s ease-in-out infinite;
}
Expand Down

0 comments on commit b7d4fdc

Please sign in to comment.