naher94 / rehanbutt.com

A little bit about me and my work. Enjoy! 🎉✈️🌏📷🐧
https://rehanbutt.com
8 stars 4 forks source link

Photo Card Border Issue #613

Closed naher94 closed 8 months ago

naher94 commented 8 months ago

Production Site has non-nested border, but local does.. not sure what is causing this Screenshot 2024-01-27 at 8 59 56 PM

naher94 commented 8 months ago

border-radius: calc($tile-radius + 0.5em); not working as an active value for some reason

naher94 commented 8 months ago

Local seems to compute it to border-radius: calc(10px + .5em); I wonder if this is some issue with SCSS vs CSS var??

naher94 commented 8 months ago

Potential fix shown here: https://stackoverflow.com/questions/17982111/sass-variable-in-css-calc-function where a SCSS var can be used in a CSS function by using #{$varName}

naher94 commented 8 months ago

Fix worked