diff options
| author | Eevee (Alex Munroe) <eevee.git@veekun.com> | 2014-08-29 20:50:15 -0700 |
|---|---|---|
| committer | Eevee (Alex Munroe) <eevee.git@veekun.com> | 2014-08-29 20:50:15 -0700 |
| commit | 19cffeafe158557e4ce56b277b79f520a6fad4c5 (patch) | |
| tree | 51c8771ab1c46c36c5f2f37a11463a71a82e2486 /scss/tests/files | |
| parent | bed6edb6e09a5751f1c0063e13add9ec969153be (diff) | |
| download | pyscss-19cffeafe158557e4ce56b277b79f520a6fad4c5.tar.gz | |
Support CSS calc().
Diffstat (limited to 'scss/tests/files')
| -rw-r--r-- | scss/tests/files/general/css-calc.css | 3 | ||||
| -rw-r--r-- | scss/tests/files/general/css-calc.scss | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/scss/tests/files/general/css-calc.css b/scss/tests/files/general/css-calc.css new file mode 100644 index 0000000..6d13266 --- /dev/null +++ b/scss/tests/files/general/css-calc.css @@ -0,0 +1,3 @@ +p { + width: calc(100% - 10px); +} diff --git a/scss/tests/files/general/css-calc.scss b/scss/tests/files/general/css-calc.scss new file mode 100644 index 0000000..aba10f7 --- /dev/null +++ b/scss/tests/files/general/css-calc.scss @@ -0,0 +1,3 @@ +p { + width: calc(100% - 10px); +} |
