·
223 commits
to master
since this release
Minor Changes
-
#1114
001be83Thanks @taylorfsteele! - Supports passing multiple font face rules tofontFaceExample usage
import { fontFace, style } from '@vanilla-extract/css'; const gentium = fontFace([ { src: 'local("Gentium")', fontWeight: 'normal', }, { src: 'local("Gentium Bold")', fontWeight: 'bold', }, ]); export const font = style({ fontFamily: gentium, });