fix(viewer): image bug

This commit is contained in:
enes 2024-12-24 17:09:01 +01:00
parent 137cd95c4e
commit cbd53852a5

View File

@ -99,7 +99,12 @@
padding-top: 10px; padding-top: 10px;
min-height: 75px; min-height: 75px;
} }
.viewer table { .viewer {
img {
max-width: 100%;
height: auto;
}
table {
table-layout: fixed; table-layout: fixed;
width: 100%; width: 100%;
border-spacing: 0; border-spacing: 0;
@ -137,6 +142,7 @@
} }
} }
} }
}
.mdxeditor { .mdxeditor {
--baseBg: rgba(255, 255, 255, 0.05); --baseBg: rgba(255, 255, 255, 0.05);
} }