source: frontend/node_modules/postcss-normalize-repeat-style/src/lib/map.js@ 9af201e

Last change on this file since 9af201e was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 340 bytes
Line 
1'use strict';
2module.exports = new Map([
3 [['repeat', 'no-repeat'].toString(), 'repeat-x'],
4 [['no-repeat', 'repeat'].toString(), 'repeat-y'],
5 [['repeat', 'repeat'].toString(), 'repeat'],
6 [['space', 'space'].toString(), 'space'],
7 [['round', 'round'].toString(), 'round'],
8 [['no-repeat', 'no-repeat'].toString(), 'no-repeat'],
9]);
Note: See TracBrowser for help on using the repository browser.