Skip to content

Commit

Permalink
use current font in markdown body
Browse files Browse the repository at this point in the history
  • Loading branch information
Maurier committed May 22, 2024
1 parent c480668 commit e3641b1
Showing 1 changed file with 14 additions and 13 deletions.
27 changes: 14 additions & 13 deletions frontend/src/components/dataset/cd.dataset.vue
Original file line number Diff line number Diff line change
Expand Up @@ -1189,6 +1189,20 @@ export default toNative(CdDataset);
overflow: auto;
resize: vertical;
}
.markdown-body {
box-sizing: border-box;
min-width: 200px;
max-width: 980px;
padding: 45px;
font-family: inherit;
}
@media (max-width: 767px) {
.markdown-body {
padding: 15px;
}
}
}
.page-content {
Expand Down Expand Up @@ -1235,17 +1249,4 @@ export default toNative(CdDataset);
:deep(#fileExplorer .v-sheet) {
background-color: #f6f6f6 !important;
}
.markdown-body {
box-sizing: border-box;
min-width: 200px;
max-width: 980px;
padding: 45px;
}
@media (max-width: 767px) {
.markdown-body {
padding: 15px;
}
}
</style>

0 comments on commit e3641b1

Please sign in to comment.