andrewgioia / mana

Magic: the Gathering mana symbol pictographic font
306 stars 32 forks source link

Variables overiding if used keyrune in same project #1

Closed JayGray closed 9 years ago

JayGray commented 9 years ago

If I use https://github.com/andrewgioia/keyrune and https://github.com/andrewgioia/Mana in the same project the variables are overiding each other.

A prefix could be helpfull here eg: Instead of

@font-path: '../fonts';
@version: '0.1';
@font-size-base: 14px;
@prefix: ms;
@serif-font: 'MPlantin, Garamond, Palatino, 'Times New Roman', Times, serif';

do

@ms-font-path: '../fonts';
@ms-version: '0.1';
@ms-font-size-base: 14px;
@ms-prefix: ms;
@ms-serif-font: 'MPlantin, Garamond, Palatino, 'Times New Roman', Times, serif';
andrewgioia commented 9 years ago

Excellent idea, I'll add this to the next version of both and should have that up early this week.