mirror of https://github.com/YunYouJun/valaxy
feat(theme-press): code block full screen width on mobile
This commit is contained in:
parent
de5f1c6a6b
commit
eecfc69885
|
@ -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>
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue