Added max-width to ShopItem component

• Added:
- max-width to ShopItem component
This commit is contained in:
mgabdev 2020-09-14 11:41:35 -05:00
parent 421111f5f2
commit 09b24f5ae0
2 changed files with 2 additions and 1 deletions

View File

@ -16,7 +16,7 @@ class ShopItem extends React.PureComponent {
return (
<a
className={[_s.d, _s.w50PC, _s.noUnderline, _s.overflowHidden, _s.cursorPointer, _s.pb15, _s.pr5].join(' ')}
className={[_s.d, _s.w50PC, _s.maxW212PX, _s.noUnderline, _s.overflowHidden, _s.cursorPointer, _s.pb15, _s.pr5].join(' ')}
target='_blank'
rel={DEFAULT_REL}
href={link}

View File

@ -516,6 +516,7 @@ pre {
.maxW640PX { max-width: 640px; }
.maxW100PC86PX { max-width: calc(100% - 86px); }
.maxW100PC42PX { max-width: calc(100% - 42px); }
.maxW212PX { max-width: 212px; }
.minW330PX { min-width: 330px; }
.minW76PX { min-width: 76px; }