Brage Sekse Aarset

Results 177 comments of Brage Sekse Aarset

Interestingly, there is a div element there containing the correct label, but it's not being rendered as text by the browser. ![Screenshot 2022-02-02 at 12 18 15](https://user-images.githubusercontent.com/5765650/152135725-08787e2e-9f1c-46a6-bced-f4f75944e7c9.jpg)

In [this example theme](https://indivorg.github.io/theme/), the labels work correctly. The reproduction of the issue lies in the difference between how these two projects are set up. **Some differences** - The Indiv...

I've managed to find a clue: The fontSize of the text is `0` when inspecting in chrome. If I change that to something else the labels show up correctly. ![Screenshot...

Removing `0` from the `fontSizes` array in the theme fixes the issue!

Perhaps we want to change the current behaviour, so that if you have a fontSizes array that starts with the value `0` you can still see the labels. One approach...

I'm working on setting up some unit testing in `style-guide`, and my test outputs this: ![Screenshot 2022-02-16 at 12 10 56](https://user-images.githubusercontent.com/5765650/154243018-8517c6cc-8057-42f3-9647-71fd4b9a489b.jpg) Here's the source code: ```ts /** @jsx jsx */...

I have still not managed to pinpoint why this goes wrong, but I have found a fix that works. If I use `getColor` from `@theme-ui/color` instead of `get` from `theme-ui`...

Are there any maintainers who could comment on whether adding the import (`import { getColor } from '../../color/src'`) to `ColorSwatch.tsx` is okay or not? Would the `style-guide` still work if...

In that case I suppose I could write a PR with the fix I described? Or should we rather take this opportunity to investigate why exactly `get()` fails when `getColor()`...

This issue contains two different problems, one of which has been fixed. The other problem that is still unsolved is that when you hoved the color swatches, you see `undefined`,...