From 48d81ef33fc29468e4679267bf102fd649cbb063 Mon Sep 17 00:00:00 2001 From: Juno Date: Fri, 10 Jul 2020 12:33:27 +0800 Subject: [PATCH] Divide style test output --- __tests__/fixtures/tailwind-output.css | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/__tests__/fixtures/tailwind-output.css b/__tests__/fixtures/tailwind-output.css index e16f646f9..d4aba308c 100644 --- a/__tests__/fixtures/tailwind-output.css +++ b/__tests__/fixtures/tailwind-output.css @@ -1686,6 +1686,26 @@ video { border-color: rgba(112, 36, 89, var(--divide-opacity)); } +.divide-solid > :not(template) ~ :not(template) { + border-style: solid; +} + +.divide-dashed > :not(template) ~ :not(template) { + border-style: dashed; +} + +.divide-dotted > :not(template) ~ :not(template) { + border-style: dotted; +} + +.divide-double > :not(template) ~ :not(template) { + border-style: double; +} + +.divide-none > :not(template) ~ :not(template) { + border-style: none; +} + .divide-opacity-0 > :not(template) ~ :not(template) { --divide-opacity: 0; }