mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 21:47:20 +00:00
21 lines
514 B
SCSS
21 lines
514 B
SCSS
.fleet-markdown {
|
|
font-size: $x-small;
|
|
|
|
ul {
|
|
// We need 20px here to keep the list items in line with the left side of
|
|
// the container.
|
|
padding-left: 20px;
|
|
}
|
|
|
|
pre {
|
|
padding: 12px;
|
|
border: 1px solid $ui-fleet-black-10;
|
|
background-color: $core-fleet-white; // copy fleet ace background color
|
|
|
|
.ace_cursor {
|
|
// We have the !important here as there doesnt seen a way to programatically
|
|
// hide only the cursor in the editor.
|
|
display: none !important;
|
|
}
|
|
}
|
|
}
|