mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-12 15:52:56 +10:00
51 lines
882 B
SCSS
51 lines
882 B
SCSS
.container {
|
|
@apply flex flex-col items-center gap-2;
|
|
@apply rounded-sm;
|
|
}
|
|
|
|
.page {
|
|
width: 210mm;
|
|
min-height: 297mm;
|
|
|
|
@apply relative z-50 grid shadow;
|
|
@apply print:shadow-none;
|
|
|
|
:global(.printer-mode) & {
|
|
@apply shadow-none;
|
|
}
|
|
|
|
&.break::after {
|
|
content: 'Page Break';
|
|
top: calc(297mm - 19px);
|
|
|
|
@apply absolute w-full border-b border-dashed border-neutral-800/75;
|
|
@apply flex items-end justify-end pr-2 pb-0.5 text-xs font-bold text-neutral-800/75;
|
|
@apply print:hidden;
|
|
|
|
:global(.preview-mode) &,
|
|
:global(.printer-mode) & {
|
|
@apply hidden;
|
|
}
|
|
}
|
|
|
|
&.format-letter {
|
|
width: 216mm;
|
|
min-height: 279mm;
|
|
|
|
&.break::after {
|
|
top: calc(279mm - 19px);
|
|
}
|
|
}
|
|
|
|
.markdown {
|
|
ul {
|
|
padding-left: 1.5em;
|
|
text-indent: -1.5em;
|
|
}
|
|
}
|
|
}
|
|
|
|
.pageNumber {
|
|
@apply text-center font-bold print:hidden;
|
|
}
|