Fixes a bug in the highlighted code.
https://github.com/jgthms/bulma/issues/1708
This commit is contained in:
parent
80eb51b977
commit
cf4e5ac137
3 changed files with 28 additions and 0 deletions
|
@ -8411,3 +8411,16 @@ ul.slick-dots {
|
||||||
font-size: 4.5em; }
|
font-size: 4.5em; }
|
||||||
.footer .footer-logo .icon .agc {
|
.footer .footer-logo .icon .agc {
|
||||||
display: block; }
|
display: block; }
|
||||||
|
|
||||||
|
code .tag, code .number {
|
||||||
|
display: inline;
|
||||||
|
padding: inherit;
|
||||||
|
font-size: inherit;
|
||||||
|
line-height: inherit;
|
||||||
|
text-align: inherit;
|
||||||
|
vertical-align: inherit;
|
||||||
|
border-radius: inherit;
|
||||||
|
font-weight: inherit;
|
||||||
|
white-space: inherit;
|
||||||
|
background: inherit;
|
||||||
|
margin: inherit; }
|
||||||
|
|
|
@ -67,3 +67,4 @@
|
||||||
@import "agaric/component.iconlist";
|
@import "agaric/component.iconlist";
|
||||||
@import "agaric/component.related";
|
@import "agaric/component.related";
|
||||||
@import "agaric/component.footer";
|
@import "agaric/component.footer";
|
||||||
|
@import "agaric/component.code";
|
||||||
|
|
14
agaric/sass/agaric/_component.code.scss
Normal file
14
agaric/sass/agaric/_component.code.scss
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
// Fixes https://github.com/jgthms/bulma/issues/1708
|
||||||
|
code .tag, code .number {
|
||||||
|
display: inline;
|
||||||
|
padding: inherit;
|
||||||
|
font-size: inherit;
|
||||||
|
line-height: inherit;
|
||||||
|
text-align: inherit;
|
||||||
|
vertical-align: inherit;
|
||||||
|
border-radius: inherit;
|
||||||
|
font-weight: inherit;
|
||||||
|
white-space: inherit;
|
||||||
|
background: inherit;
|
||||||
|
margin: inherit;
|
||||||
|
}
|
Loading…
Reference in a new issue