Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ $vue-content-placeholders-spacing: 10px !default;
width: 100vw;
max-width: 1000px;
height: 100%;
background: linear-gradient(to right, transparent 0%, darken($vue-content-placeholders-secondary-color, 5%) 15%, transparent 30%);
background: linear-gradient(to right, rgba(darken($vue-content-placeholders-secondary-color, 5%), 0) 0%, darken($vue-content-placeholders-secondary-color, 5%) 15%, rgba(darken($vue-content-placeholders-secondary-color, 5%), 0) 30%);

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we could also specify a color with a transparency value of zero, and it would still work in Safari:
rgba(255, 255, 255, 0)

But your code would also work as well (a very very faint color at 5% opacity).

animation-duration: 1.5s;
animation-fill-mode: forwards;
animation-iteration-count: infinite;
Expand Down