File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
src/resources/formats/html Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -587,9 +587,12 @@ div.ansi-escaped-output {
587587 --quarto-text-muted : #{$text-muted } ;
588588 --quarto-border-color : #{$table-border-color } ;
589589 --quarto-border-width : #{$border-width } ;
590- --quarto-border-radius : #{$border-radius } ;
590+ @if not variable-exists (enable-rounded ) or $enable-rounded == true {
591+ --quarto-border-radius : #{$border-radius } ;
592+ }
591593}
592594
595+
593596/* rules to support GT table styling */
594597table .gt_table {
595598 color : var (--quarto-body-color );
Original file line number Diff line number Diff line change @@ -835,7 +835,9 @@ div.sourceCode {
835835 @if $code-block-bg {
836836 background-color : $code-block-bg-color ;
837837 border : 1px solid $code-block-bg-color ;
838- border-radius : $border-radius ;
838+ @if $enable-rounded {
839+ border-radius : $border-radius ;
840+ }
839841 } @else {
840842 background-color : $body-bg !important ;
841843 border : none ;
You can’t perform that action at this time.
0 commit comments