Last active
April 12, 2019 18:30
-
-
Save farhang/99a9128fbd3c5a9e9ea5c1b054b59d94 to your computer and use it in GitHub Desktop.
Bootstrap rounded corner border
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .table-rounded thead th { | |
| border: none; | |
| } | |
| .table-rounded thead th:first-child { | |
| border-radius: $border-radius 0 0 0; | |
| } | |
| .table-rounded thead th:last-child { | |
| border-radius: 0 $border-radius 0 0; | |
| } | |
| .table-rounded tbody td { | |
| border: none; | |
| } | |
| .table-rounded tbody tr:last-child td:first-child { | |
| border-radius: 0 0 0 $border-radius; | |
| } | |
| .table-rounded tbody tr:last-child td:last-child { | |
| border-radius: 0 0 $border-radius 0; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment