From ed65141358c849edd1874c11553e557d38d1069e Mon Sep 17 00:00:00 2001 From: Yuraima Estevez Date: Thu, 14 Sep 2023 15:40:39 -0500 Subject: [PATCH] Remove `max-width` from Lede (#10449) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ### WHY are these changes introduced? Fixes https://github.com/Shopify/polaris/issues/10154 This change matches what is currently on prod Screenshot 2023-09-13 at 1 01 12 PM ### WHAT is this pull request doing? ### How to 🎩 🖥 [Local development instructions](https://github.com/Shopify/polaris/blob/main/README.md#local-development) 🗒 [General tophatting guidelines](https://github.com/Shopify/polaris/blob/main/documentation/Tophatting.md) 📄 [Changelog guidelines](https://github.com/Shopify/polaris/blob/main/.github/CONTRIBUTING.md#changelog)
Copy-paste this code in playground/Playground.tsx: ```jsx import React from 'react'; import {Page} from '../src'; export function Playground() { return ( {/* Add the code you want to test in here */} ); } ```
### 🎩 checklist - [ ] Tested on [mobile](https://github.com/Shopify/polaris/blob/main/documentation/Tophatting.md#cross-browser-testing) - [ ] Tested on [multiple browsers](https://help.shopify.com/en/manual/shopify-admin/supported-browsers) - [ ] Tested for [accessibility](https://github.com/Shopify/polaris/blob/main/documentation/Accessibility%20testing.md) - [ ] Updated the component's `README.md` with documentation changes - [ ] [Tophatted documentation](https://github.com/Shopify/polaris/blob/main/documentation/Tophatting%20documentation.md) changes in the style guide --- polaris.shopify.com/src/components/Lede/Lede.module.scss | 1 - 1 file changed, 1 deletion(-) diff --git a/polaris.shopify.com/src/components/Lede/Lede.module.scss b/polaris.shopify.com/src/components/Lede/Lede.module.scss index 7810005e10d..19c4d273e3d 100644 --- a/polaris.shopify.com/src/components/Lede/Lede.module.scss +++ b/polaris.shopify.com/src/components/Lede/Lede.module.scss @@ -4,7 +4,6 @@ font-size: var(--font-size-600); font-weight: var(--font-weight-500); letter-spacing: var(--letter-spacing-300); - max-width: 60ch; margin-bottom: 1.5rem; } }