-
Hello all, I'm trying to setup I didn't find a plain object exported from twind that would contain the default theme.fontFamily.sans defined here. So I'm trying to use the
Thanks for your help. |
Beta Was this translation helpful? Give feedback.
Answered by
sastan
Mar 15, 2021
Replies: 1 comment 3 replies
-
oh... That is currently not possible. But it should. Would the following code work for you (once implemented)? setup({
theme: {
extend: {
fontFamily: (theme) => ({
sans: ["Inter var", theme("fontFamily.sans")]
})
}
}
}) |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
jgoux
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
oh... That is currently not possible. But it should. Would the following code work for you (once implemented)?