Skip to content

Commit

Permalink
Merge pull request tailwindlabs#1040 from tailwindcss/border-double
Browse files Browse the repository at this point in the history
Add border-double
  • Loading branch information
adamwathan authored Jul 20, 2019
2 parents 604d921 + 11b7933 commit 27a9cd9
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 0 deletions.
20 changes: 20 additions & 0 deletions __tests__/fixtures/tailwind-output-important.css
Original file line number Diff line number Diff line change
Expand Up @@ -3196,6 +3196,10 @@ video {
border-style: dotted !important;
}

.border-double {
border-style: double !important;
}

.border-none {
border-style: none !important;
}
Expand Down Expand Up @@ -10143,6 +10147,10 @@ video {
border-style: dotted !important;
}

.sm\:border-double {
border-style: double !important;
}

.sm\:border-none {
border-style: none !important;
}
Expand Down Expand Up @@ -17091,6 +17099,10 @@ video {
border-style: dotted !important;
}

.md\:border-double {
border-style: double !important;
}

.md\:border-none {
border-style: none !important;
}
Expand Down Expand Up @@ -24039,6 +24051,10 @@ video {
border-style: dotted !important;
}

.lg\:border-double {
border-style: double !important;
}

.lg\:border-none {
border-style: none !important;
}
Expand Down Expand Up @@ -30987,6 +31003,10 @@ video {
border-style: dotted !important;
}

.xl\:border-double {
border-style: double !important;
}

.xl\:border-none {
border-style: none !important;
}
Expand Down
20 changes: 20 additions & 0 deletions __tests__/fixtures/tailwind-output.css
Original file line number Diff line number Diff line change
Expand Up @@ -3196,6 +3196,10 @@ video {
border-style: dotted;
}

.border-double {
border-style: double;
}

.border-none {
border-style: none;
}
Expand Down Expand Up @@ -10143,6 +10147,10 @@ video {
border-style: dotted;
}

.sm\:border-double {
border-style: double;
}

.sm\:border-none {
border-style: none;
}
Expand Down Expand Up @@ -17091,6 +17099,10 @@ video {
border-style: dotted;
}

.md\:border-double {
border-style: double;
}

.md\:border-none {
border-style: none;
}
Expand Down Expand Up @@ -24039,6 +24051,10 @@ video {
border-style: dotted;
}

.lg\:border-double {
border-style: double;
}

.lg\:border-none {
border-style: none;
}
Expand Down Expand Up @@ -30987,6 +31003,10 @@ video {
border-style: dotted;
}

.xl\:border-double {
border-style: double;
}

.xl\:border-none {
border-style: none;
}
Expand Down
3 changes: 3 additions & 0 deletions src/plugins/borderStyle.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ export default function() {
'.border-dotted': {
'border-style': 'dotted',
},
'.border-double': {
'border-style': 'double',
},
'.border-none': {
'border-style': 'none',
},
Expand Down

0 comments on commit 27a9cd9

Please sign in to comment.