Skip to content

Commit

Permalink
add missing skeleton style
Browse files Browse the repository at this point in the history
  • Loading branch information
yannbf committed May 5, 2024
1 parent bfbbc32 commit 2ace4a2
Showing 1 changed file with 19 additions and 6 deletions.
25 changes: 19 additions & 6 deletions src/styles/GlobalStyle.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { createGlobalStyle, css } from 'styled-components'
import { breakpoints } from './breakpoints'
import { resetCSS } from './CSSReset'
import 'react-multi-carousel/lib/styles.css'
import 'react-loading-skeleton/dist/skeleton.css'

export const GlobalStyle = createGlobalStyle(
({ theme: { color } }) => css`
Expand All @@ -17,7 +18,9 @@ export const GlobalStyle = createGlobalStyle(
font-style: normal;
font-weight: 400;
font-display: swap;
src: local('Montserrat Regular'), local('Montserrat-Regular'),
src:
local('Montserrat Regular'),
local('Montserrat-Regular'),
url(https://fonts.gstatic.com/s/montserrat/v15/JTUSjIg1_i6t8kCHKm459WlhyyTh89Y.woff2)
format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
Expand All @@ -29,7 +32,9 @@ export const GlobalStyle = createGlobalStyle(
font-style: normal;
font-weight: 500;
font-display: swap;
src: local('Montserrat Medium'), local('Montserrat-Medium'),
src:
local('Montserrat Medium'),
local('Montserrat-Medium'),
url(https://fonts.gstatic.com/s/montserrat/v15/JTURjIg1_i6t8kCHKm45_ZpC3gnD_vx3rCs.woff2)
format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
Expand All @@ -41,7 +46,9 @@ export const GlobalStyle = createGlobalStyle(
font-style: normal;
font-weight: 700;
font-display: swap;
src: local('Montserrat Bold'), local('Montserrat-Bold'),
src:
local('Montserrat Bold'),
local('Montserrat-Bold'),
url(https://fonts.gstatic.com/s/montserrat/v15/JTURjIg1_i6t8kCHKm45_dJE3gnD_vx3rCs.woff2)
format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
Expand All @@ -53,7 +60,9 @@ export const GlobalStyle = createGlobalStyle(
font-family: 'Montserrat';
font-style: normal;
font-weight: 900;
src: local('Montserrat Black'), local('Montserrat-Black'),
src:
local('Montserrat Black'),
local('Montserrat-Black'),
url(https://fonts.gstatic.com/s/montserrat/v15/JTURjIg1_i6t8kCHKm45_epG3gnD_vx3rCs.woff2)
format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
Expand All @@ -65,7 +74,9 @@ export const GlobalStyle = createGlobalStyle(
font-style: normal;
font-weight: 400;
font-display: swap;
src: local('Hind Regular'), local('Hind-Regular'),
src:
local('Hind Regular'),
local('Hind-Regular'),
url(https://fonts.gstatic.com/s/hind/v11/5aU69_a8oxmIdGl4BDGwgDI.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
Expand All @@ -76,7 +87,9 @@ export const GlobalStyle = createGlobalStyle(
font-style: normal;
font-weight: 500;
font-display: swap;
src: local('Hind Medium'), local('Hind-Medium'),
src:
local('Hind Medium'),
local('Hind-Medium'),
url(https://fonts.gstatic.com/s/hind/v11/5aU19_a8oxmIfJpbERySjRhc9V0.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
Expand Down

0 comments on commit 2ace4a2

Please sign in to comment.