remove border in preview, add border to iframe in editor
This commit is contained in:
parent
cfffb8577a
commit
1ff558826c
|
|
@ -3,11 +3,6 @@
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<title>CV</title>
|
<title>CV</title>
|
||||||
<style>
|
|
||||||
.cv-container {
|
|
||||||
border-right: 1px solid #ddd;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
<link rel="stylesheet" href="../scss/cv-base.css">
|
<link rel="stylesheet" href="../scss/cv-base.css">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
|
||||||
|
|
@ -113,8 +113,10 @@ button {
|
||||||
|
|
||||||
.output-html {
|
.output-html {
|
||||||
// set a fixed size so that responsive styles won't be applied in the iframe
|
// set a fixed size so that responsive styles won't be applied in the iframe
|
||||||
width: 801px;
|
width: 795px; // 210mm ≈ 793px
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
margin: 0; padding: 0; border: 0;
|
||||||
|
border-right: 1px solid var(--grey-2);
|
||||||
}
|
}
|
||||||
|
|
||||||
.output-json {
|
.output-json {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue