Skip to content

Commit

Permalink
🐛 Fix calc() statement that prevented builds
Browse files Browse the repository at this point in the history
Interpolate the sass calculation in the CSS calc() function.
  • Loading branch information
greengiraffe committed Nov 5, 2019
1 parent 0901bce commit a58e485
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@
// the rounded corners of the tab and the <main>
content: "";
position: absolute;
width: calc(100% - (2 * $border-radius-default));
width: calc(100% - #{2 * $border-radius-default});
height: 0.5rem;
bottom: -0.5rem;
left: $border-radius-default;
Expand Down

1 comment on commit a58e485

@vercel
Copy link

@vercel vercel bot commented on a58e485 Nov 5, 2019

Choose a reason for hiding this comment

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

Please sign in to comment.