You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Seems like absolutely positioned components are ignoring the values set in space. Is this by design (nothing in the docs)? What is the idiomatic way to write this?
styled.div` position: aboslute; left: 0; // not css value 0, but 0 index in the theme.space array bottom: 0;`;
Position is an excluded value, I can see why, but I'd like to be able to set the coordinates based on themed space values
The text was updated successfully, but these errors were encountered:
Position properties have never used theme.space in Styled System (you can use margin instead), which is probably why it's not currently in this specification, but I think it could make sense to add it here if you want to open a PR
Seems like absolutely positioned components are ignoring the values set in
space
. Is this by design (nothing in the docs)? What is the idiomatic way to write this?Position is an excluded value, I can see why, but I'd like to be able to set the coordinates based on themed space values
The text was updated successfully, but these errors were encountered: