20 lines
398 B
SCSS
20 lines
398 B
SCSS
/* Give editor access to all of bootstrap. */
|
|
@import "bootstrap/bootstrap";
|
|
|
|
/**
|
|
* Reset the Bootstrap _reboot.scss styles for tables.
|
|
* That reboot is breaking non-BS tables in the editor.
|
|
*/
|
|
table:not(.table) {
|
|
thead,
|
|
tbody,
|
|
tfoot,
|
|
tr,
|
|
td,
|
|
th {
|
|
border-color: $table-border-color;
|
|
border-style: solid;
|
|
border-width: $table-border-width;
|
|
}
|
|
}
|