We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Since writing in German takes more space than in English, is it possible to use CSS to style only one specific language, like German for example?
My Gatsby config file:
module.exports = { plugins: [ { resolve: gatsby-plugin-intl, options: { // language JSON resource path path: ${__dirname}/src/intl, // supported language languages: [de, en, pt], // language file path defaultLanguage: de, }, }, ], };
gatsby-plugin-intl
${__dirname}/src/intl
de
en
pt
I use a single style file for CSS.
Thank you for your help.
The text was updated successfully, but these errors were encountered:
yes, you can use this https://css-tricks.com/almanac/selectors/l/lang/
Sorry, something went wrong.
No branches or pull requests
Since writing in German takes more space than in English, is it possible to use CSS to style only one specific language, like German for example?
My Gatsby config file:
module.exports = {
plugins: [
{
resolve:
gatsby-plugin-intl
,options: {
// language JSON resource path
path:
${__dirname}/src/intl
,// supported language
languages: [
de
,en
,pt
],// language file path
defaultLanguage:
de
,},
},
],
};
I use a single style file for CSS.
Thank you for your help.
The text was updated successfully, but these errors were encountered: