(node: KeyframesNode)
| 132 | } |
| 133 | |
| 134 | keyframes(node: KeyframesNode) { |
| 135 | const name = this.id ? `${this.id}-${node.name}` : node.name; |
| 136 | return ( |
| 137 | this.emit(`@${node.vendor || ''}keyframes ${name}`, node.position) + |
| 138 | this.emit(` {\n${this.indent(1)}`) + |
| 139 | this.mapVisit(node.keyframes, '\n') + |
| 140 | this.emit(`${this.indent(-1)}}`) |
| 141 | ); |
| 142 | } |
| 143 | |
| 144 | keyframe(node: KeyframeNode) { |
| 145 | const decls = node.declarations; |