Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Calc functions breaking change page #798

Merged
merged 1 commit into from
Aug 11, 2023
Merged

Calc functions breaking change page #798

merged 1 commit into from
Aug 11, 2023

Conversation

pamelalozano16
Copy link
Contributor

Fix #797.

@netlify
Copy link

netlify bot commented Aug 10, 2023

Deploy Preview for sass-lang ready!

Name Link
🔨 Latest commit 84833e8
🔍 Latest deploy log https://app.netlify.com/sites/sass-lang/deploys/64d62533bfb13a0008067f8f
😎 Deploy Preview https://deploy-preview-798--sass-lang.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

@pamelalozano16 pamelalozano16 force-pushed the pamelalozano branch 2 times, most recently from 784692e to e157cc4 Compare August 10, 2023 18:49
source/documentation/breaking-changes/calc-functions.md Outdated Show resolved Hide resolved
source/documentation/breaking-changes/calc-functions.md Outdated Show resolved Hide resolved
source/documentation/breaking-changes/calc-functions.md Outdated Show resolved Hide resolved
source/documentation/breaking-changes/calc-functions.md Outdated Show resolved Hide resolved
source/documentation/breaking-changes/calc-functions.md Outdated Show resolved Hide resolved
source/documentation/breaking-changes/calc-functions.md Outdated Show resolved Hide resolved
source/documentation/breaking-changes/calc-functions.md Outdated Show resolved Hide resolved
source/documentation/breaking-changes/calc-functions.md Outdated Show resolved Hide resolved
source/documentation/breaking-changes/calc-functions.md Outdated Show resolved Hide resolved
@ntkme
Copy link
Contributor

ntkme commented Aug 10, 2023

We should also update the following code example defining a pow() function to something else on https://sass-lang.com/documentation/at-rules/function/

{% codeExample 'functions' %}
@function pow($base, $exponent) {
$result: 1;
@for $_ from 1 through $exponent {
$result: $result * $base;
}
@return $result;
}
.sidebar {
float: left;
margin-left: pow(4, 3) * 1px;
}
===
@function pow($base, $exponent)
$result: 1
@for $_ from 1 through $exponent
$result: $result * $base
@return $result
.sidebar
float: left
margin-left: pow(4, 3) * 1px
{% endcodeExample %}

source/documentation/at-rules/function.md Outdated Show resolved Hide resolved
source/documentation/at-rules/function.md Outdated Show resolved Hide resolved
source/documentation/breaking-changes/calc-functions.md Outdated Show resolved Hide resolved
source/documentation/breaking-changes/calc-functions.md Outdated Show resolved Hide resolved
source/documentation/breaking-changes/calc-functions.md Outdated Show resolved Hide resolved
@Goodwine Goodwine merged commit 1e9c3a6 into main Aug 11, 2023
9 checks passed
@Goodwine Goodwine deleted the pamelalozano branch August 11, 2023 17:47
nex3 added a commit that referenced this pull request Aug 17, 2023
nazarepiedady pushed a commit to nazarepiedady/sass-site that referenced this pull request Aug 28, 2023
nazarepiedady pushed a commit to nazarepiedady/sass-site that referenced this pull request Aug 28, 2023
asaf400 pushed a commit to asaf400/ass-site that referenced this pull request Apr 18, 2024
asaf400 pushed a commit to asaf400/ass-site that referenced this pull request Apr 18, 2024
asaf400 pushed a commit to asaf400/ass-site that referenced this pull request Apr 18, 2024
asaf400 pushed a commit to asaf400/ass-site that referenced this pull request Apr 18, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Update @function documentation for css calc function changes
3 participants