Skip to content

Commit

Permalink
fix: change offset and shadow
Browse files Browse the repository at this point in the history
  • Loading branch information
mmorainville committed Mar 27, 2021
1 parent 19a6938 commit 6359b43
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 83 deletions.
116 changes: 35 additions & 81 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion src/components/VStep.vue
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,10 @@ export default {
color: white;
max-width: 320px;
border-radius: 3px;
box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px,
rgba(0, 0, 0, 0) 0px 0px 0px 0px,
rgba(0, 0, 0, 0.1) 0px 4px 6px -1px,
rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
padding: 1rem;
text-align: center;
z-index: 10000;
Expand Down
2 changes: 1 addition & 1 deletion src/shared/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export const DEFAULT_STEP_OPTIONS = {
{
name: 'offset',
options: {
offset: [0, 15]
offset: [0, 10]
}
}
],
Expand Down

0 comments on commit 6359b43

Please sign in to comment.