fix leaky css selector
This commit is contained in:
parent
069f4c592b
commit
b11e98029f
2 changed files with 4 additions and 2 deletions
|
@ -43,7 +43,7 @@ export default {
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div class="tree-content-holder">
|
<div class="repository-view tree-content-holder">
|
||||||
<repo-sidebar/><div class="panel-right" :class="{'edit-mode': editMode}">
|
<repo-sidebar/><div class="panel-right" :class="{'edit-mode': editMode}">
|
||||||
<repo-tabs/>
|
<repo-tabs/>
|
||||||
<component :is="currentBlobView" class="blob-viewer-container"></component>
|
<component :is="currentBlobView" class="blob-viewer-container"></component>
|
||||||
|
|
|
@ -51,7 +51,7 @@
|
||||||
margin: 20px;
|
margin: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tree-content-holder {
|
.repository-view.tree-content-holder {
|
||||||
border: 1px solid $border-color;
|
border: 1px solid $border-color;
|
||||||
border-radius: $border-radius-default;
|
border-radius: $border-radius-default;
|
||||||
color: $almost-black;
|
color: $almost-black;
|
||||||
|
@ -78,6 +78,7 @@
|
||||||
.blob-viewer-container {
|
.blob-viewer-container {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
.monaco-editor.vs {
|
.monaco-editor.vs {
|
||||||
.cursor {
|
.cursor {
|
||||||
background: $black;
|
background: $black;
|
||||||
|
@ -374,6 +375,7 @@
|
||||||
|
|
||||||
.render-error {
|
.render-error {
|
||||||
min-height: calc(100vh - 63px);
|
min-height: calc(100vh - 63px);
|
||||||
|
|
||||||
p {
|
p {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue