mirror of
https://github.com/danog/sass-site.git
synced 2025-01-22 05:41:42 +01:00
Fixing spacing issues in Operations list
This commit is contained in:
parent
4f7b31d005
commit
362503edd2
@ -1,3 +1,4 @@
|
||||
{% markdown %}
|
||||
- [`==` and `!=`](/documentation/operators/equality) are used to check if two
|
||||
values are the same.
|
||||
- [`+`, `-`, `*`, `/`, and `%`](/documentation/operators/numeric) have their
|
||||
@ -10,7 +11,10 @@
|
||||
`null`.
|
||||
- [`+`, `-`, and `/`](/documentation/operators/string) can be used to
|
||||
concatenate strings.
|
||||
{% endmarkdown %}
|
||||
{% if parens %}
|
||||
{% markdown %}
|
||||
- [`(` and `)`](/documentation/operators#parentheses) can be used to explicitly
|
||||
control the precedence order of operations.
|
||||
{% endmarkdown %}
|
||||
{% endif %}
|
||||
|
@ -24,7 +24,7 @@ complementary_content: |
|
||||
|
||||
</nav>
|
||||
---
|
||||
|
||||
{% markdown %}
|
||||
## Statements
|
||||
|
||||
A Sass stylesheet is made up of a series of _statements_, which are evaluated in
|
||||
@ -108,9 +108,11 @@ The simplest expressions just represent static values:
|
||||
### Operations
|
||||
|
||||
Sass defines syntax for a number of operations:
|
||||
{% endmarkdown %}
|
||||
|
||||
{% render 'documentation/snippets/operator-list', parens:true %}
|
||||
|
||||
{% markdown %}
|
||||
### Other Expressions
|
||||
|
||||
- [Variables](/documentation/variables), like `$var`.
|
||||
@ -122,3 +124,4 @@ Sass defines syntax for a number of operations:
|
||||
rules.
|
||||
- [The parent selector](/documentation/style-rules/parent-selector), `&`.
|
||||
- The value `!important`, which is parsed as an unquoted string.
|
||||
{% endmarkdown %}
|
Loading…
x
Reference in New Issue
Block a user