From 3c2f7c81bec58a8cf098ecea57320f02ef56a766 Mon Sep 17 00:00:00 2001 From: AlexVipond Date: Fri, 28 Jun 2019 10:32:38 -0600 Subject: [PATCH] Update test fixtures with new css --- __tests__/fixtures/tailwind-output-important.css | 8 ++++++++ __tests__/fixtures/tailwind-output.css | 8 ++++++++ 2 files changed, 16 insertions(+) diff --git a/__tests__/fixtures/tailwind-output-important.css b/__tests__/fixtures/tailwind-output-important.css index a5a8fad90..6df7a1301 100644 --- a/__tests__/fixtures/tailwind-output-important.css +++ b/__tests__/fixtures/tailwind-output-important.css @@ -456,6 +456,14 @@ html { border-color: #e2e8f0; } +/* + * Ensure horizontal rules are visible by default + */ + +hr { + border-width: 1px; +} + /** * Undo the `border-style: none` reset that Normalize applies to images so that * our `border-{width}` utilities have the expected effect. diff --git a/__tests__/fixtures/tailwind-output.css b/__tests__/fixtures/tailwind-output.css index 7057331e7..91809f2ed 100644 --- a/__tests__/fixtures/tailwind-output.css +++ b/__tests__/fixtures/tailwind-output.css @@ -456,6 +456,14 @@ html { border-color: #e2e8f0; } +/* + * Ensure horizontal rules are visible by default + */ + +hr { + border-width: 1px; +} + /** * Undo the `border-style: none` reset that Normalize applies to images so that * our `border-{width}` utilities have the expected effect.