mirror of
https://github.com/danog/dart-sass.git
synced 2024-12-03 10:08:01 +01:00
Set precision to 10.
This commit is contained in:
parent
cdc3065dfb
commit
e2eb590ce6
@ -85,7 +85,10 @@ official behavior.
|
|||||||
3. Pseudo selector arguments are parsed as `<declaration-value>`s rather than
|
3. Pseudo selector arguments are parsed as `<declaration-value>`s rather than
|
||||||
having a more limited custom parsing. See [issue 2120][].
|
having a more limited custom parsing. See [issue 2120][].
|
||||||
|
|
||||||
|
4. The numeric precision is set to 10. See [issue 1122][].
|
||||||
|
|
||||||
[issue 1599]: https://github.com/sass/sass/issues/1599
|
[issue 1599]: https://github.com/sass/sass/issues/1599
|
||||||
[issue 1126]: https://github.com/sass/sass/issues/1126
|
[issue 1126]: https://github.com/sass/sass/issues/1126
|
||||||
[issue 2120]: https://github.com/sass/sass/issues/2120
|
[issue 2120]: https://github.com/sass/sass/issues/2120
|
||||||
|
[issue 1122]: https://github.com/sass/sass/issues/1122
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@ import '../visitor/interface/value.dart';
|
|||||||
import '../value.dart';
|
import '../value.dart';
|
||||||
|
|
||||||
class SassNumber extends Value {
|
class SassNumber extends Value {
|
||||||
static const precision = 5;
|
static const precision = 10;
|
||||||
|
|
||||||
final num value;
|
final num value;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user