fix: make styles work in older browsers
This commit is contained in:
parent
f711ced991
commit
b8dbc971cd
1 changed files with 27 additions and 28 deletions
|
@ -51,33 +51,32 @@ const formatDate = (date: Date) => {
|
|||
display: flex;
|
||||
gap: 5px;
|
||||
}
|
||||
.content {
|
||||
img {
|
||||
width: 100%;
|
||||
max-width: 700px;
|
||||
margin-left: calc((100% - min(100%, 700px)) / 2);
|
||||
margin-bottom: 20px;
|
||||
cursor: pointer;
|
||||
}
|
||||
th, td {
|
||||
border: 1px solid #444;
|
||||
padding: 6px 10px;
|
||||
}
|
||||
th {
|
||||
text-align: left;
|
||||
}
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
width: 100%;
|
||||
}
|
||||
pre {
|
||||
padding: 12px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
p > code {
|
||||
background-color: #24292e;
|
||||
padding: 2px 4px;
|
||||
border-radius: 4px;
|
||||
}
|
||||
.content :global(img) {
|
||||
width: 100%;
|
||||
max-width: 700px;
|
||||
margin-left: calc((100% - min(100%, 700px)) / 2);
|
||||
margin-bottom: 20px;
|
||||
cursor: pointer;
|
||||
}
|
||||
.content :global(th),
|
||||
.content :global(td) {
|
||||
border: 1px solid #444;
|
||||
padding: 6px 10px;
|
||||
}
|
||||
.content :global(th) {
|
||||
text-align: left;
|
||||
}
|
||||
.content :global(table) {
|
||||
border-collapse: collapse;
|
||||
width: 100%;
|
||||
}
|
||||
.content :global(pre) {
|
||||
padding: 12px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
.content :global(code) {
|
||||
background-color: #24292e;
|
||||
padding: 2px 4px;
|
||||
border-radius: 4px;
|
||||
}
|
||||
</style>
|
||||
|
|
Loading…
Reference in a new issue