1
0
Fork 0
freesewing/lib/themes/sample.ts
2018-07-15 08:36:19 +00:00

11 lines
352 B
TypeScript

import { Theme } from './theme';
export class Sample extends Theme {
constructor() {
super();
this.style += `
path { fill: none; stroke: #000000; stroke-opacity:1; stroke-width: 0.5; stroke-miterlimit:4; stroke-dashoffset:0; stroke-linecap:round; stroke-linejoin:round; }
path.hidden { fill: none; stroke: none; }
`;
}
}