Closed antonieIPR closed 1 year ago
If I'm correct, all the elements that use a box-shadow have this property hard-coded (except for the color):
box-shadow: 0 1.6px 3.6px 0 rgba(var(--shadow-colour), 0.132), 0 0.3px 0.9px 0 rgba(var(--shadow-colour), 0.108); for instance
box-shadow: 0 1.6px 3.6px 0 rgba(var(--shadow-colour), 0.132), 0 0.3px 0.9px 0 rgba(var(--shadow-colour), 0.108);
The x,y values differ for each element (below the <nav> element, above the <footer> element ) and I am wondering if the following is desirable:
<nav>
<footer>
adding them to variables is a good suggestion and nav and footer should be the same.
If I'm correct, all the elements that use a box-shadow have this property hard-coded (except for the color):
box-shadow: 0 1.6px 3.6px 0 rgba(var(--shadow-colour), 0.132), 0 0.3px 0.9px 0 rgba(var(--shadow-colour), 0.108);
for instanceThe x,y values differ for each element (below the
<nav>
element, above the<footer>
element ) and I am wondering if the following is desirable: