feat(theme-press): code block full screen width on mobile

This commit is contained in:
JasonXuDeveloper - 傑 2025-07-15 01:01:14 +10:00
parent de5f1c6a6b
commit eecfc69885
2 changed files with 12 additions and 1 deletions

View File

@ -4,7 +4,7 @@ import pkg from '../../package.json'
<template>
<div class="p-4" text="white sm" bg="dark" rounded-lg>
<pre>
<pre class="overflow-scroll">
🌌 Valaxy <span text-blue>v{{ pkg.version }}</span>
<span text-cyan>?</span> Select a type: <span op="70"> - Use arrow-keys. Return to submit.</span>

View File

@ -42,6 +42,17 @@ html:not(.dark) .vp-code-dark {
.markdown-body li div[class*="language-"] {
border-radius: 6px 0 0 6px;
}
.markdown-body .vp-code-group .tabs,
.markdown-body .vp-code-group div[class*="language-"] {
position: relative;
left: 50%;
right: 50%;
margin-left: -50vw !important;
margin-right: -50vw !important;
width: 100vw !important;
height: auto;
}
}
.markdown-body {