mirror of
https://github.com/danog/dart-sass.git
synced 2024-11-30 04:39:03 +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
|
||||
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 1126]: https://github.com/sass/sass/issues/1126
|
||||
[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';
|
||||
|
||||
class SassNumber extends Value {
|
||||
static const precision = 5;
|
||||
static const precision = 10;
|
||||
|
||||
final num value;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user