BubbaLovesCheese
Active member
If I wish to upload a 100x100 px Avatar through the API, will changing
Basically, I would like all my uploaded 100px avatars to maintain their native 100x100 dimension.
@_avatarBaseSize: 96px;
to @_avatarBaseSize: 100px;
in setup.less mean that the avatar will not be resized in the "m" folder?
Code:
// AVATARS
@_avatarBaseSize: 100px; // originally => @_avatarBaseSize: 96px;
@avatar-xxs: (@_avatarBaseSize) / 4;
@avatar-xs: (@_avatarBaseSize) / 3;
@avatar-s: (@_avatarBaseSize) / 2;
@avatar-m: (@_avatarBaseSize);
@avatar-l: (@_avatarBaseSize) * 2;
@avatar-o: (@_avatarBaseSize) * 4;
Basically, I would like all my uploaded 100px avatars to maintain their native 100x100 dimension.