Skip to content

Commit bf9e534

Browse files
authored
fix: margin 0 on mobile (#140)
1 parent 9682276 commit bf9e534

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/components/PaneRight.vue

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ import CodeBlock from './CodeBlock.vue'
3131
import Instruction from './Instruction.vue'
3232
import { store, __DEV_CONFIG_FILE__ } from '../store'
3333
import { computed, ref } from 'vue'
34-
import templates from '../templates/templates.json'
3534
import '@iconify/iconify'
3635
3736
export default {
@@ -105,7 +104,7 @@ export default {
105104
@media (max-width: 768px) {
106105
.right-pane-contexts {
107106
height: 100%;
108-
padding: 0;
107+
margin: 0;
109108
}
110109
}
111110
.loading-code {

0 commit comments

Comments
 (0)